diff options
| author | Rapptz <[email protected]> | 2019-04-10 05:12:11 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-10 05:13:30 -0400 |
| commit | 50dcdac5ca74d39f2589e66266b2e99626c60b1e (patch) | |
| tree | f7f306277cab26d6d00a316a25f9d5f8b5623145 /docs | |
| parent | Update changelog (diff) | |
| download | discord.py-50dcdac5ca74d39f2589e66266b2e99626c60b1e.tar.xz discord.py-50dcdac5ca74d39f2589e66266b2e99626c60b1e.zip | |
[commands] Fix references in Bot to actually link.
Exceptions can't seem to link due to a bug in Sphinx.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index af09c7e9..93de0e98 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,10 @@ extlinks = { } # Links used for cross-referencing stuff in other documentation -intersphinx_mapping = {'py': ('https://docs.python.org/3', None)} +intersphinx_mapping = { + 'py': ('https://docs.python.org/3', None), + 'aio': ('https://aiohttp.readthedocs.io/en/stable/', None) +} rst_prolog = """ .. |coro| replace:: This function is a |corourl|_. |