Skip to content

Commit 1863f30

Browse 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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/base.py

+1-1
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)