Skip to content

Commit

Permalink
Fix doc build script
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Mar 13, 2016
1 parent ab8a0cc commit b393856
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,17 @@
'sphinx.ext.intersphinx',
'alabaster',
'aiohttp_doctools',
'sphinxcontrib.spelling',
'sphinxcontrib.newsfeed',
]


try:
import sphinxcontrib.spelling # noqa
extensions.append('sphinxcontrib.spelling')
except ImportError:
pass


intersphinx_mapping = {
'python': ('http://docs.python.org/3', None),
'aiohttpjinja2':
Expand Down

0 comments on commit b393856

Please sign in to comment.