From ed0b2735513dea5efd53a304ae1069dac0d646d7 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 27 Sep 2017 10:15:18 -0700 Subject: [PATCH] Fix a bug in docs/conf.py Without the trailing slash, `py = ('https://docs.python.org/3', None)` mysteriously creates links to the Python 2 documentation rather than Python 3. --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 9877cc4..1513de0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,5 +52,5 @@ html_context = dict( hy_descriptive_version = hy_descriptive_version) intersphinx_mapping = dict( - py2 = ('https://docs.python.org/2', None), - py = ('https://docs.python.org/3', None)) + py2 = ('https://docs.python.org/2/', None), + py = ('https://docs.python.org/3/', None))