diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-06-04 21:08:36 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-06-04 21:18:51 +0200 |
commit | ab2741aed23ae5241c047c7159fa7f636753d7f9 (patch) | |
tree | e70139abadf79abbd5451c6bd845df4c75400df8 /doc/source/conf.py | |
parent | e9e490a54a87cfdbc9618b8547a7ecc81a6e2fac (diff) | |
download | numpy-ab2741aed23ae5241c047c7159fa7f636753d7f9.tar.gz |
DOC: remove module index from reference guide.
It was broken, and after fixing it looked quite useless.
Update in conf.py is because `html_use_modindex` is deprecated.
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 0fa905111..42e46c4f8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -121,7 +121,7 @@ html_additional_pages = { } # If false, no module index is generated. -html_use_modindex = True +html_domain_indices = False # If true, the reST sources are included in the HTML build as _sources/<name>. #html_copy_source = True |