1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Description: No u'' in python 3.9
Author: Thomas Goirand <zigo@debian.org>
Bug-Debian: https://bugs.debian.org/997523
Forwarded: no
Last-Update: 2021-10-26
Index: python-logutils/doc/conf.py
===================================================================
--- python-logutils.orig/doc/conf.py
+++ python-logutils/doc/conf.py
@@ -41,8 +41,8 @@
master_doc = 'index'
# General information about the project.
-project = u'Logutils'
-copyright = u'2010-2017, Vinay Sajip'
+project = 'Logutils'
+copyright = '2010-2017, Vinay Sajip'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -171,8 +171,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, document class [howto/manual]).
latex_documents = [
- ('index', 'Logutils.tex', ur'Logutils Documentation',
- ur'Vinay Sajip', 'manual'),
+ ('index', 'Logutils.tex', r'Logutils Documentation',
+ r'Vinay Sajip', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
|