diff options
author | John L. Villalovos <john@sodarock.com> | 2022-01-09 11:43:58 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-01-09 11:43:58 -0800 |
commit | 1863f30ea1f6fb7644b3128debdbb6b7bb218836 (patch) | |
tree | f9de26ea61b5e62022425892b2b01c2f4d0042ea | |
parent | c01b7c494192c5462ec673848287ef2a5c9bd737 (diff) | |
download | gitlab-1863f30ea1f6fb7644b3128debdbb6b7bb218836.tar.gz |
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' --------------------------^
-rw-r--r-- | gitlab/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/base.py b/gitlab/base.py index 6a6e992..af32905 100644 --- a/gitlab/base.py +++ b/gitlab/base.py @@ -36,7 +36,7 @@ __all__ = [ _URL_ATTRIBUTE_ERROR = ( - f"https://python-gitlab.readthedocs.io/en/{gitlab.__version__}/" + f"https://python-gitlab.readthedocs.io/en/v{gitlab.__version__}/" f"faq.html#attribute-error-list" ) |