remove unicode prefix 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: If5d619926b8a8ba313cf6586e268b5fee260344c
This commit is contained in:
niuke 2022-08-25 14:35:54 +08:00 committed by Ke Niu
parent 9a4cc920b4
commit da9d79fabf
1 changed files with 8 additions and 8 deletions

View File

@ -45,8 +45,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'tripleo-quickstart Release Notes'
copyright = u'2017, TripleO Developers'
project = 'tripleo-quickstart Release Notes'
copyright = '2017, TripleO 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
@ -200,8 +200,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'tripleo-quickstartReleaseNotes.tex', u'tripleo-quickstart Release Notes Documentation',
u'2017, TripleO Developers', 'manual'),
('index', 'tripleo-quickstartReleaseNotes.tex', 'tripleo-quickstart Release Notes Documentation',
'2017, TripleO Developers', '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', 'tripleo-quickstartreleasenotes', u'tripleo-quickstart Release Notes Documentation',
[u'2017, TripleO Developers'], 1)
('index', 'tripleo-quickstartreleasenotes', 'tripleo-quickstart Release Notes Documentation',
['2017, TripleO Developers'], 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', 'tripleo-quickstartReleaseNotes', u'tripleo-quickstart Release Notes Documentation',
u'2017, TripleO Developers', 'tripleo-quickstartReleaseNotes', 'Ansible based project for setting up TripleO virtual environments',
('index', 'tripleo-quickstartReleaseNotes', 'tripleo-quickstart Release Notes Documentation',
'2017, TripleO Developers', 'tripleo-quickstartReleaseNotes', 'Ansible based project for setting up TripleO virtual environments',
'Miscellaneous'),
]