Skip to content

Commit

Permalink
doc: unicode author string
Browse files Browse the repository at this point in the history
Sphinx v1.6.5 was failing to build the docs on Python 2.7.13.

  Configuration error:
  Invalid latex_documents.author found (might contain non-ASCII chars. Please use u"..." notation instead): ('index', 'stompest.tex', 'stompest Documentation', 'Jan M\xc3\xbcller, Roger Hoover', 'manual')

Switching to a unicode literal resolves this error.
  • Loading branch information
ktdreyer authored and nikipore committed Dec 5, 2017
1 parent 66d8fcc commit 158a8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Expand Up @@ -196,7 +196,7 @@
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'stompest.tex', 'stompest Documentation',
'Jan Müller, Roger Hoover', 'manual'),
u'Jan Müller, Roger Hoover', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down

0 comments on commit 158a8d0

Please sign in to comment.