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: I06cead907a0fbc019eece1305d505c4e153363a9
This commit is contained in:
LiZekun 2022-01-17 09:28:43 +08:00 committed by Andrey Kurilin
parent 846a5fe4ec
commit 03155a82e2
1 changed files with 6 additions and 6 deletions

View File

@ -78,8 +78,8 @@ source_suffix = ".rst"
master_doc = "index"
# General information about the project.
project = u"Rally"
copyright = u"%d, OpenStack Foundation" % dt.datetime.now().year
project = "Rally"
copyright = "%d, OpenStack Foundation" % dt.datetime.now().year
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -239,8 +239,8 @@ latex_elements = {
latex_documents = [
("index",
"%s.tex" % project,
u"%s Documentation" % project,
u"OpenStack Foundation", "manual"),
"%s Documentation" % project,
"OpenStack Foundation", "manual"),
]
# The name of an image file (relative to this directory) to place at the top of
@ -283,8 +283,8 @@ latex_documents = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
("index", "Rally", u"Rally Documentation",
u"Rally Team", "Rally",
("index", "Rally", "Rally Documentation",
"Rally Team", "Rally",
"Testing framework and tool for all kinds of tests",
"Development"),
]