Skip to content

Commit

Permalink
Simplify docs/conf.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilland committed Feb 13, 2017
1 parent 3f46e04 commit 31b2d39
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/conf.py
Expand Up @@ -58,6 +58,7 @@

# General information about the project.
project = project_module.__package__
project_description = project_module.__description__
author = project_module.__author__
copyright = u'2014, ' + author

Expand Down Expand Up @@ -269,8 +270,7 @@ def setup(app):
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, project_module.__package__, project + ' Documentation',
[author], 1)
(master_doc, project, project + ' Documentation', [author], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -283,8 +283,8 @@ def setup(app):
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, project_module.__package__, project + ' Documentation',
author, project_module.__package__, project_module.__description__,
(master_doc, project, project + ' Documentation',
author, project, project_description,
'Miscellaneous'),
]

Expand Down

0 comments on commit 31b2d39

Please sign in to comment.