1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Sun, 8 Jun 2025 10:58:29 +0200
Subject: docs: Use local inventory for intersphinx
Forwarded: not-needed
---
docs/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 31c4c61..f6beb6a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -91,7 +91,7 @@ latex_documents = [
intersphinx_mapping = {
"django": (
- "https://docs.djangoproject.com/en/stable/",
- "https://docs.djangoproject.com/en/stable/_objects/",
+ "/usr/share/doc/python-django-doc/html",
+ None
),
}
|