From 3226c43a9868ec4ad333cd49c89ad2cbbdbf7808 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Sun, 13 Oct 2019 19:44:39 +0200 Subject: [PATCH] Fix Intersphinx Mapping for Requests to fix CI --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 44ec9eb..054e980 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,7 @@ autodoc_default_flags = ['show-inheritance', 'members', 'undoc-members'] autodoc_member_order = 'bysource' intersphinx_mapping = {'python': ('https://docs.python.org/3', None), - 'requests': ('http://docs.python-requests.org/en/master', None)} + 'requests': ('https://requests.kennethreitz.org/en/master/', None)} extlinks = {'issue': ('https://github.com/instaloader/instaloader/issues/%s', 'issue #')}