# HG changeset patch # User Franz Glasner # Date 1523719942 -7200 # Node ID 28164259aa838e86ce4ffdf88024a5ff280adc10 # Parent 4b10bd85610b87783894567508f3107d24f99d8b FIX: Build docu with Python: remove all warnings diff -r 4b10bd85610b -r 28164259aa83 doc/conf.py --- 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'), ]