Skip to content

Commit

Permalink
remove unicode literal from code
Browse files Browse the repository at this point in the history
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
  • Loading branch information
LiZekun authored and andreykurilin committed Aug 5, 2022
1 parent 846a5fe commit 03155a8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
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
Expand Down Expand Up @@ -239,8 +239,8 @@
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
Expand Down Expand Up @@ -283,8 +283,8 @@
# (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"),
]
Expand Down

0 comments on commit 03155a8

Please sign in to comment.