diff options
| author | Julian Andres Klode <jak@debian.org> | 2014-03-22 18:19:04 +0100 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2014-03-22 18:19:04 +0100 |
| commit | 774c68832202d8fa4ef1432d8c180e9a4794feba (patch) | |
| tree | 99fe452abf91ba1b931e6cf6f58346b1e676ba91 /doc/source | |
| parent | ab1e0bbef9c41017640e90c36b0beeb942a16b2f (diff) | |
| download | python-apt-774c68832202d8fa4ef1432d8c180e9a4794feba.tar.gz | |
doc/source/conf.py: Do not use 'u' and 'r' prefixes together
This does not work in Python 3.
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 <jak@debian.org>', 'manual'), + ('contents', 'python-apt.tex', u'python-apt Documentation', + u'Julian Andres Klode <jak@debian.org>', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of |
