diff options
author | Georg Brandl <georg@python.org> | 2011-09-23 11:42:18 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-09-23 11:42:18 +0200 |
commit | cd5e11abee7bdd09fd7f8a2709eb75349883beae (patch) | |
tree | 74ffee921ccc6a8dbc14365719bb0d575458aad4 /sphinx/apidoc.py | |
parent | 4abbe95a9c6b82ec644ea7fc81fd0198edf7831e (diff) | |
download | sphinx-git-cd5e11abee7bdd09fd7f8a2709eb75349883beae.tar.gz |
Remove "Modules" suffix for project header.
Diffstat (limited to 'sphinx/apidoc.py')
-rw-r--r-- | sphinx/apidoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/apidoc.py b/sphinx/apidoc.py index af4043336..6006943d9 100644 --- a/sphinx/apidoc.py +++ b/sphinx/apidoc.py @@ -110,7 +110,7 @@ def create_modules_toc_file(master_package, modules, opts, name='modules'): """ Create the module's index. """ - text = format_heading(1, '%s Modules' % opts.header) + text = format_heading(1, '%s' % opts.header) text += '.. toctree::\n' text += ' :maxdepth: %s\n\n' % opts.maxdepth |