diff options
| author | Aymeric Augustin | 2013-12-24 16:06:01 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-12-24 16:06:01 +0100 | 
| commit | e1141b678177ce359bad5b06ce833da2e53c4613 (patch) | |
| tree | f6149470573ecf4b64a7b0bb7e35fd5da2be3f03 /docs/conf.py | |
| parent | ee2b85d4ecfe51e04276841030a7e29be2c6247c (diff) | |
| download | django-debug-toolbar-e1141b678177ce359bad5b06ce833da2e53c4613.tar.bz2 | |
Implicit setup can also fail with ImproperlyConfigured.
Fix #511.
Diffstat (limited to 'docs/conf.py')
| -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 7c5d833..f4b07b5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -265,7 +265,10 @@ texinfo_documents = [  # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} +intersphinx_mapping = { +    'http://docs.python.org/': None, +    'http://docs.djangoproject.com/en/dev/': 'http://docs.djangoproject.com/en/dev/_objects/', +}  # -- Options for Read the Docs -------------------------------------------- | 
