remove unicode from code

Change-Id: If9318a262f7b023ec5e845e44a50e8e247f6e851
This commit is contained in:
wangjiaqi07 2022-08-25 10:25:30 +08:00
parent 18ec45ed40
commit 80537809c5
2 changed files with 11 additions and 11 deletions

View File

@ -36,7 +36,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 = ['ironicclient.'] modindex_common_prefix = ['ironicclient.']
@ -77,8 +77,8 @@ latex_documents = [
( (
'index', 'index',
'doc-python-ironicclient.tex', 'doc-python-ironicclient.tex',
u'Python Ironic Client Documentation', 'Python Ironic Client Documentation',
u'OpenStack LLC', 'OpenStack LLC',
'manual' 'manual'
), ),
] ]

View File

@ -61,8 +61,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Ironic Client Release Notes' project = 'Ironic Client Release Notes'
copyright = u'2015, Ironic Developers' copyright = '2015, Ironic Developers'
# Release notes are version independent. # Release notes are version independent.
# The short X.Y version. # The short X.Y version.
@ -208,8 +208,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'IronicClientReleaseNotes.tex', ('index', 'IronicClientReleaseNotes.tex',
u'Ironic Client Release Notes Documentation', 'Ironic Client Release Notes Documentation',
u'Ironic Developers', 'manual'), 'Ironic 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
@ -239,8 +239,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'ironicclientreleasenotes', ('index', 'ironicclientreleasenotes',
u'Ironic Client Release Notes Documentation', 'Ironic Client Release Notes Documentation',
[u'Ironic Developers'], 1) ['Ironic Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -254,8 +254,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'IronicClientReleaseNotes', ('index', 'IronicClientReleaseNotes',
u'Ironic Client Release Notes Documentation', 'Ironic Client Release Notes Documentation',
u'Ironic Developers', 'IronicClientReleaseNotes', 'Ironic Developers', 'IronicClientReleaseNotes',
'Bare metal provisioning service client.', 'Bare metal provisioning service client.',
'Miscellaneous'), 'Miscellaneous'),
] ]