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.
This commit is contained in:
Kodi Arfer 2017-09-27 10:15:18 -07:00
parent b25a69179f
commit ed0b273551

View File

@ -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))