From 2bf492c2f44797318bf205a8f8be4d6e74668d95 Mon Sep 17 00:00:00 2001 From: medmunds Date: Wed, 17 Jan 2018 13:10:49 -0800 Subject: [PATCH] Docs: Update intersphinx source urls Python and Django have both moved their docs to https. --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ea0bd21..1809aa8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -265,8 +265,8 @@ extlinks = { # -- Options for Intersphinx ------------------------------------------------ intersphinx_mapping = { - 'python': ('http://docs.python.org/3.6', None), - 'django': ('http://docs.djangoproject.com/en/stable/', 'http://docs.djangoproject.com/en/stable/_objects/'), + 'python': ('https://docs.python.org/3.6', None), + 'django': ('https://docs.djangoproject.com/en/stable/', 'https://docs.djangoproject.com/en/stable/_objects/'), 'requests': ('http://docs.python-requests.org/en/latest/', None), }