Mercurial > hgrepos > Python > libs > ConfigMix
changeset 154:28164259aa83
FIX: Build docu with Python: remove all warnings
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Sat, 14 Apr 2018 17:32:22 +0200 |
| parents | 4b10bd85610b |
| children | c73e65f43050 |
| files | doc/conf.py |
| diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/conf.py Sat Apr 14 17:21:12 2018 +0200 +++ b/doc/conf.py Sat Apr 14 17:32:22 2018 +0200 @@ -17,12 +17,13 @@ sys.path.insert(0, os.path.dirname(os.path.abspath('.'))) import configmix +from configmix.compat import u # -- Project information ----------------------------------------------------- project = 'ConfigMix' -copyright = '2015–2018, Franz Glasner. All rights reserved' +copyright = u('2015–2018, Franz Glasner. All rights reserved') author = 'Franz Glasner' # The short X.Y version @@ -159,7 +160,7 @@ # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'ConfigMix.tex', '“ConfigMix” Documentation', + (master_doc, 'ConfigMix.tex', '"ConfigMix" Documentation', 'Franz Glasner', 'manual', True), ] @@ -183,7 +184,7 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'ConfigMix', 'ConfigMix Documentation', + (master_doc, 'ConfigMix', '"ConfigMix" Documentation', author, 'ConfigMix', 'One line description of project.', 'Miscellaneous'), ]
