Remove unnecessary unicode prefixes

Change-Id: I56651c1b83baaf443551686d7e8545eba2a0c7a1
This commit is contained in:
songwenping 2022-04-19 19:39:12 +08:00
parent 5d17e5fb44
commit 145f060b51
2 changed files with 8 additions and 8 deletions

View File

@ -34,7 +34,7 @@ openstackdocs_bug_tag = ''
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2014, OpenStack Foundation' copyright = '2014, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text. # If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True add_function_parentheses = True

View File

@ -57,7 +57,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2016, oslo.concurrency Developers' copyright = '2016, oslo.concurrency Developers'
# Release notes do not need a version in the title, they span # Release notes do not need a version in the title, they span
# multiple versions. # multiple versions.
@ -197,8 +197,8 @@ htmlhelp_basename = 'oslo.concurrencyReleaseNotesDoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'oslo.concurrencyReleaseNotes.tex', ('index', 'oslo.concurrencyReleaseNotes.tex',
u'oslo.concurrency Release Notes Documentation', 'oslo.concurrency Release Notes Documentation',
u'oslo.concurrency Developers', 'manual'), 'oslo.concurrency Developers', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -228,8 +228,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'oslo.concurrencyReleaseNotes', ('index', 'oslo.concurrencyReleaseNotes',
u'oslo.concurrency Release Notes Documentation', 'oslo.concurrency Release Notes Documentation',
[u'oslo.concurrency Developers'], 1) ['oslo.concurrency Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -243,8 +243,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'oslo.concurrencyReleaseNotes', ('index', 'oslo.concurrencyReleaseNotes',
u'oslo.concurrency Release Notes Documentation', 'oslo.concurrency Release Notes Documentation',
u'oslo.concurrency Developers', 'oslo.concurrencyReleaseNotes', 'oslo.concurrency Developers', 'oslo.concurrencyReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]