Remove the 'u' from strings, everything is unicode

This commit is contained in:
Roland Geider
2020-09-08 00:19:21 +02:00
parent c2e9a255cc
commit 3e309b3a5d
44 changed files with 156 additions and 156 deletions

View File

@@ -47,8 +47,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'wger Workout Manager'
copyright = u'2020, Roland Geider'
project = 'wger Workout Manager'
copyright = '2020, Roland Geider'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -200,8 +200,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'wgerWorkoutManager.tex', u'wger Workout Manager Documentation',
u'Roland Geider', 'manual'),
('index', 'wgerWorkoutManager.tex', 'wger Workout Manager Documentation',
'Roland Geider', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -230,8 +230,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'wgerworkoutmanager', u'wger Workout Manager Documentation',
[u'Roland Geider'], 1)
('index', 'wgerworkoutmanager', 'wger Workout Manager Documentation',
['Roland Geider'], 1)
]
# If true, show URL addresses after external links.
@@ -244,8 +244,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'wgerWorkoutManager', u'wger Workout Manager Documentation',
u'Roland Geider', 'wgerWorkoutManager', 'One line description of project.',
('index', 'wgerWorkoutManager', 'wger Workout Manager Documentation',
'Roland Geider', 'wgerWorkoutManager', 'One line description of project.',
'Miscellaneous'),
]