remove unicode from code

Change-Id: I1e8e961ef288484505ec16b174f1359fb36fab4b
This commit is contained in:
zhangboye 2021-01-03 16:18:52 +08:00
parent d8df4aa145
commit a091b0cdd1
2 changed files with 11 additions and 11 deletions

View File

@ -38,7 +38,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2020, OpenStack Foundation' copyright = '2020, OpenStack Foundation'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/sushy-cli' openstackdocs_repo_name = 'openstack/sushy-cli'
@ -74,6 +74,6 @@ latex_use_xindy = False
latex_documents = [ latex_documents = [
('index', ('index',
'doc-sushycli.tex', 'doc-sushycli.tex',
u'Sushy CLI Documentation', 'Sushy CLI Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', 'manual'),
] ]

View File

@ -55,8 +55,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'sushy-cli Release Notes' project = 'sushy-cli Release Notes'
copyright = u'2020, OpenStack Foundation' copyright = '2020, OpenStack Foundation'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/sushy-cli' openstackdocs_repo_name = 'openstack/sushy-cli'
@ -215,8 +215,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'SushyCliReleaseNotes.tex', ('index', 'SushyCliReleaseNotes.tex',
u'Sushy CLI Release Notes Documentation', 'Sushy CLI 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
@ -246,8 +246,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'sushyclireleasenotes', ('index', 'sushyclireleasenotes',
u'Sushy CLI Release Notes Documentation', 'Sushy CLI 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.
@ -261,8 +261,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'SushyCliReleaseNotes', ('index', 'SushyCliReleaseNotes',
u'Sushy CLI Release Notes Documentation', 'Sushy CLI Release Notes Documentation',
u'Ironic Developers', 'SushyCliReleaseNotes', 'Ironic Developers', 'SushyCliReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]