From 5805d1c346bc7875259abb47626b268ba4479881 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Sat, 22 Mar 2025 14:27:36 +0100 Subject: [PATCH] [5.1.x] Simplified Intersphinx configuration example. docs.djangoproject.com had been updated to serve the object.inv file from the default location, so the second tuple element can be None (the "default" value). Backport of 5df512e53ab12fd8a0c92421a45aa1b664adb166 from main. --- docs/intro/reusable-apps.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt index 71696ce0ee..3defa74c4f 100644 --- a/docs/intro/reusable-apps.txt +++ b/docs/intro/reusable-apps.txt @@ -276,7 +276,7 @@ this. For a small app like polls, this process isn't too difficult. # ... "django": ( "https://docs.djangoproject.com/en/stable/", - "https://docs.djangoproject.com/en/stable/_objects/", + None, ), }