Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1863f30

Browse filesBrowse files
fix: broken URL for FAQ about attribute-error-list
The URL was missing a 'v' before the version number and thus the page did not exist. Previously the URL for python-gitlab 3.0.0 was: https://python-gitlab.readthedocs.io/en/3.0.0/faq.html#attribute-error-list Which does not exist. Change it to: https://python-gitlab.readthedocs.io/en/v3.0.0/faq.html#attribute-error-list add the 'v' --------------------------^
1 parent c01b7c4 commit 1863f30
Copy full SHA for 1863f30

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎gitlab/base.py‎

Copy file name to clipboardExpand all lines: gitlab/base.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737

3838
_URL_ATTRIBUTE_ERROR = (
39-
f"https://python-gitlab.readthedocs.io/en/{gitlab.__version__}/"
39+
f"https://python-gitlab.readthedocs.io/en/v{gitlab.__version__}/"
4040
f"faq.html#attribute-error-list"
4141
)
4242

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.