remove unicode literal from code

All strings are considered as unicode string from Python 3.

This patch drops the explicit unicode literal (u'...')
appearances from the unicode strings.

Change-Id: Id5f1a59d47ba2cd2ae1927636623768351adc648
Co-Authored-By: LiZekun <2954674728@qq.com>
This commit is contained in:
Takashi Kajinami
2022-03-08 09:18:52 +09:00
parent 4d18b83b8d
commit 00c73a9536

View File

@@ -45,7 +45,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2017, Puppet OpenStack Developers'
copyright = '2017, Puppet OpenStack Developers'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -185,8 +185,8 @@ htmlhelp_basename = 'puppet-novaReleaseNotesdoc'
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'puppet-novaReleaseNotes.tex', u'puppet-nova Release Notes Documentation',
u'2017, Puppet OpenStack Developers', 'manual'),
('index', 'puppet-novaReleaseNotes.tex', 'puppet-nova Release Notes Documentation',
'2017, Puppet OpenStack Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -215,8 +215,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'puppet-novareleasenotes', u'puppet-nova Release Notes Documentation',
[u'2017, Puppet OpenStack Developers'], 1)
('index', 'puppet-novareleasenotes', 'puppet-nova Release Notes Documentation',
['2017, Puppet OpenStack Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -229,8 +229,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'puppet-novaReleaseNotes', u'puppet-nova Release Notes Documentation',
u'2017, Puppet OpenStack Developers', 'puppet-novaReleaseNotes', 'One line description of project.',
('index', 'puppet-novaReleaseNotes', 'puppet-nova Release Notes Documentation',
'2017, Puppet OpenStack Developers', 'puppet-novaReleaseNotes', 'One line description of project.',
'Miscellaneous'),
]