From 1863f30ea1f6fb7644b3128debdbb6b7bb218836 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sun, 9 Jan 2022 11:43:58 -0800 Subject: [PATCH] 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' --------------------------^ --- gitlab/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/base.py b/gitlab/base.py index 6a6e99212..af329058d 100644 --- a/gitlab/base.py +++ b/gitlab/base.py @@ -36,7 +36,7 @@ _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" )