From 774c68832202d8fa4ef1432d8c180e9a4794feba Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Sat, 22 Mar 2014 18:19:04 +0100 Subject: doc/source/conf.py: Do not use 'u' and 'r' prefixes together This does not work in Python 3. --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/source') diff --git a/doc/source/conf.py b/doc/source/conf.py index 41dda03c..6775269f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -213,8 +213,8 @@ htmlhelp_basename = 'python-aptdoc' # Grouping the document tree into LaTeX files. List of tuples # (source index, target name, title, author, document class [howto/manual]). latex_documents = [ - ('contents', 'python-apt.tex', ur'python-apt Documentation', - ur'Julian Andres Klode ', 'manual'), + ('contents', 'python-apt.tex', u'python-apt Documentation', + u'Julian Andres Klode ', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of -- cgit v1.2.3