remove unicode prefix from code

Change-Id: I55f1536dec190d2a62afe6f50b2099cbcb6c24ad
This commit is contained in:
niuke
2022-08-15 11:16:14 +08:00
parent 6469429498
commit 3ada2fb8b0
2 changed files with 12 additions and 12 deletions

View File

@@ -48,7 +48,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, Various members of the OpenStack Foundation' copyright = '2017, Various members of the 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
@@ -79,8 +79,8 @@ htmlhelp_basename = 'openstacksdkdoc'
latex_documents = [ latex_documents = [
('index', ('index',
'doc-openstacksdk.tex', 'doc-openstacksdk.tex',
u'OpenStackSDK Documentation', 'OpenStackSDK Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', 'manual'),
] ]
# Allow deeper levels of nesting for \begin...\end stanzas # Allow deeper levels of nesting for \begin...\end stanzas

View File

@@ -59,7 +59,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, Various members of the OpenStack Foundation' copyright = '2017, Various members of the OpenStack Foundation'
# Release notes are version independent. # Release notes are version independent.
# The short X.Y version. # The short X.Y version.
@@ -198,8 +198,8 @@ htmlhelp_basename = 'shadeReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'shadeReleaseNotes.tex', ('index', 'shadeReleaseNotes.tex',
u'Shade Release Notes Documentation', 'Shade Release Notes Documentation',
u'Shade Developers', 'manual'), 'Shade 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
@@ -229,8 +229,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'shadereleasenotes', ('index', 'shadereleasenotes',
u'shade Release Notes Documentation', 'shade Release Notes Documentation',
[u'shade Developers'], 1) ['shade Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@@ -244,10 +244,10 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'shadeReleaseNotes', ('index', 'shadeReleaseNotes',
u'shade Release Notes Documentation', 'shade Release Notes Documentation',
u'shade Developers', 'shadeReleaseNotes', 'shade Developers', 'shadeReleaseNotes',
u'A client library for interacting with OpenStack clouds', 'A client library for interacting with OpenStack clouds',
u'Miscellaneous'), 'Miscellaneous'),
] ]
# Documents to append as an appendix to all manuals. # Documents to append as an appendix to all manuals.