remove unicode prefix from code

Change-Id: I0de3c786fa2617a44094c37827ebd93a8dfcf3b6
This commit is contained in:
niuke 2022-08-15 10:52:16 +08:00
parent 1dd6993d7b
commit eae6adf00b
2 changed files with 15 additions and 15 deletions

View File

@ -88,7 +88,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2012, OpenStack Foundation' copyright = '2012, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -131,8 +131,8 @@ modindex_common_prefix = ['keystone.']
# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual' # List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual'
man_pages = [ man_pages = [
('cli/keystone-manage', 'keystone-manage', u'Keystone Management Utility', ('cli/keystone-manage', 'keystone-manage', 'Keystone Management Utility',
[u'OpenStack'], 1) ['OpenStack'], 1)
] ]
@ -232,8 +232,8 @@ latex_elements = {
# NOTE(gyee): Specify toctree_only=True for a better document structure of # NOTE(gyee): Specify toctree_only=True for a better document structure of
# the generated PDF file. # the generated PDF file.
latex_documents = [ latex_documents = [
('index', 'doc-keystone.tex', u'Keystone Documentation', ('index', 'doc-keystone.tex', 'Keystone Documentation',
u'OpenStack', 'manual', True) 'OpenStack', 'manual', True)
] ]
# 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
@ -263,8 +263,8 @@ latex_documents = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'keystone', u'Keystone Documentation', ('index', 'keystone', 'Keystone Documentation',
u'OpenStack', 'keystone', 'One line description of project.', 'OpenStack', 'keystone', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]

View File

@ -54,8 +54,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Keystone Release Notes' project = 'Keystone Release Notes'
copyright = u'2015, Keystone Developers' copyright = '2015, Keystone Developers'
# Release notes are version independent # Release notes are version independent
@ -197,8 +197,8 @@ htmlhelp_basename = 'KeystoneReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'KeystoneReleaseNotes.tex', ('index', 'KeystoneReleaseNotes.tex',
u'Keystone Release Notes Documentation', 'Keystone Release Notes Documentation',
u'Keystone Developers', 'manual'), 'Keystone 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
@ -227,8 +227,8 @@ latex_documents = [
# One entry per manual page. List of tuples # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'keystonereleasenotes', u'Keystone Release Notes Documentation', ('index', 'keystonereleasenotes', 'Keystone Release Notes Documentation',
[u'Keystone Developers'], 1) ['Keystone Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -241,8 +241,8 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'KeystoneReleaseNotes', u'Keystone Release Notes Documentation', ('index', 'KeystoneReleaseNotes', 'Keystone Release Notes Documentation',
u'Keystone Developers', 'KeystoneReleaseNotes', 'Keystone Developers', 'KeystoneReleaseNotes',
'Identity, Authentication and Access Management for OpenStack.', 'Identity, Authentication and Access Management for OpenStack.',
'Miscellaneous'), 'Miscellaneous'),
] ]