Remove unnecessary unicode prefixes

All strings are unicode by default in Python 3. No need to mark them as
such.

Change-Id: Id937b87f7c7e2767ce5eb456db39d8ce81a1a69a
This commit is contained in:
U-HOME\songwenping 2022-04-19 14:30:50 +08:00 committed by songwenping
parent 1757c64199
commit 87b1165aa3
2 changed files with 4 additions and 4 deletions

View File

@ -67,6 +67,6 @@ html_theme = 'openstackdocs'
# (source start file, target name, title, author, documentclass
# [howto/manual]).
latex_documents = [
('index', 'doc-os-traits.tex', u'os-traits Documentation',
u'OpenStack Foundation', 'manual'),
('index', 'doc-os-traits.tex', 'os-traits Documentation',
'OpenStack Foundation', 'manual'),
]

View File

@ -39,8 +39,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'os-traits Release Notes'
copyright = u'2017, OpenStack Foundation'
project = 'os-traits Release Notes'
copyright = '2017, OpenStack Foundation'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the