summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2024-08-22 18:14:04 -0300
committernessita <124304+nessita@users.noreply.github.com>2024-08-23 11:15:16 -0300
commit47b921391f1df0c5c15e965b43b3a435830ed89b (patch)
tree4bcd296ee92cbccb5f2557d37c7b9d286171cd32 /docs/conf.py
parent0304f677ca32bc4f046e986a86844e4d03e7beea (diff)
Removed unnecessary trailing slashes in Sphinx intersphinx_mapping URLs.
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 0c633397ac..2c578d5a8d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -182,9 +182,9 @@ pygments_style = "trac"
# Links to Python's docs should reference the most recent version of the 3.x
# branch, which is located at this URL.
intersphinx_mapping = {
- "python": ("https://docs.python.org/3/", None),
- "sphinx": ("https://www.sphinx-doc.org/en/master/", None),
- "psycopg": ("https://www.psycopg.org/psycopg3/docs/", None),
+ "python": ("https://docs.python.org/3", None),
+ "sphinx": ("https://www.sphinx-doc.org/en/master", None),
+ "psycopg": ("https://www.psycopg.org/psycopg3/docs", None),
}
# Python's docs don't change every week.