diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-06 17:15:37 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-06 17:15:37 +0200 |
commit | bceb88e59c3ff8e0413184bd3520c60111fe7851 (patch) | |
tree | 41ac5b1649660585fa195a1f08516aa686b18a23 /doc | |
parent | 6b591df5abdca7624efc46bcfac1a133b2d2513b (diff) | |
download | yawa-bceb88e59c3ff8e0413184bd3520c60111fe7851.tar.xz |
doc/conf.py: Make name unicode literal
Fixes build with python2 sphinx
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index 9d2a16b..1c026bd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -11,5 +11,5 @@ source_suffix = '.rst' # (source start file, name, description, authors, manual section). man_pages = [ ('yawa', 'yawa', 'Yet Another Wallpaper Application', - ['Johannes Löthberg'], 1) + [u'Johannes Löthberg'], 1) ] |