Remove redundant u in unicode string for python3

This commit is contained in:
Augustin Trancart 2020-02-09 22:11:13 +01:00
parent 981413268c
commit e7d661aa80

View file

@ -60,18 +60,18 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Moulinette' project = 'Moulinette'
copyright = u'2017, YunoHost Collective' copyright = '2017, YunoHost Collective'
author = u'YunoHost Collective' author = 'YunoHost Collective'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = u'2.6.1' version = '2.6.1'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = u'2.6.1' release = '2.6.1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -156,8 +156,8 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, 'Moulinette.tex', u'Moulinette Documentation', (master_doc, 'Moulinette.tex', 'Moulinette Documentation',
u'YunoHost Collective', 'manual'), 'YunoHost Collective', 'manual'),
] ]
@ -166,7 +166,7 @@ latex_documents = [
# One entry per manual page. List of tuples # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
(master_doc, 'moulinette', u'Moulinette Documentation', (master_doc, 'moulinette', 'Moulinette Documentation',
[author], 1) [author], 1)
] ]
@ -177,7 +177,7 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
(master_doc, 'Moulinette', u'Moulinette Documentation', (master_doc, 'Moulinette', 'Moulinette Documentation',
author, 'Moulinette', 'One line description of project.', author, 'Moulinette', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]