python-zope.i18nmessageid/fix-intersphinx-mapping.patch
2024-09-11 05:11:35 +00:00

23 lines
644 B
Diff

From 59ef476780398c83eaa4516d2fd3aaaecfb0f9a1 Mon Sep 17 00:00:00 2001
From: Tres Seaver <tseaver@palladion.com>
Date: Fri, 24 May 2024 15:12:06 -0400
Subject: [PATCH] docx: fix intersphinx mapping format
Closes #49.
---
docs/conf.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index c399349..6821bba 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -243,4 +243,6 @@
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
+intersphinx_mapping = {
+ 'python': ('https://docs.python.org/3', None),
+}