remove unicode from code

Change-Id: Iaf64cc387f901408c6deb50053b3ab984844432b
This commit is contained in:
wangjiaqi07 2022-08-25 10:38:32 +08:00
parent 3a1444840e
commit 04826f09e4
2 changed files with 10 additions and 10 deletions

View File

@ -34,7 +34,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'OpenStack Foundation' copyright = 'OpenStack Foundation'
# A list of ignored prefixes for module index sorting. # A list of ignored prefixes for module index sorting.
modindex_common_prefix = ['ironic_inspector_client'] modindex_common_prefix = ['ironic_inspector_client']
@ -70,8 +70,8 @@ latex_documents = [
( (
'index', 'index',
'doc-python-ironic-inspector-client.tex', 'doc-python-ironic-inspector-client.tex',
u'Python Ironic Inspector Client Documentation', 'Python Ironic Inspector Client Documentation',
u'OpenStack Foundation', 'OpenStack Foundation',
'manual' 'manual'
), ),
] ]

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'2015, Ironic Inspector Developers' copyright = '2015, Ironic Inspector Developers'
# Release notes are version independent. # Release notes are version independent.
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
@ -200,8 +200,8 @@ htmlhelp_basename = 'IronicInspectorClientReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'IronicInspectorClientReleaseNotes.tex', ('index', 'IronicInspectorClientReleaseNotes.tex',
u'Ironic Inspector Client Release Notes Documentation', 'Ironic Inspector Client Release Notes Documentation',
u'Ironic Inspector Developers', 'manual'), 'Ironic Inspector 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
@ -231,8 +231,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'ironicinspectorclientreleasenotes', ('index', 'ironicinspectorclientreleasenotes',
u'Ironic Inspector Client Release Notes Documentation', 'Ironic Inspector Client Release Notes Documentation',
[u'Ironic Inspector Developers'], 1) ['Ironic Inspector Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -246,8 +246,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'IronicInspectorClientReleaseNotes', ('index', 'IronicInspectorClientReleaseNotes',
u'Ironic Inspector Client Release Notes Documentation', 'Ironic Inspector Client Release Notes Documentation',
u'Ironic Inspector Developers', 'IronicInspectorClientReleaseNotes', 'Ironic Inspector Developers', 'IronicInspectorClientReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]