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

View File

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