Remove unicode from code

Change-Id: I28686ccf170e85c6c1c9a982ad861286bc654fec
This commit is contained in:
LiZekun 2022-01-19 22:34:35 +08:00
parent fa6ce58b43
commit ed207dc3cd
2 changed files with 10 additions and 10 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, Ironic Developers' copyright = '2020, Ironic Developers'
# 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
@ -74,6 +74,6 @@ latex_use_xindy = False
latex_documents = [ latex_documents = [
('index', ('index',
'doc-ipe.tex', 'doc-ipe.tex',
u'Ironic Prometheus Exporter Documentation', 'Ironic Prometheus Exporter Documentation',
u'Ironic Developers', 'manual'), 'Ironic Developers', 'manual'),
] ]

View File

@ -64,7 +64,7 @@ master_doc = 'index'
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
copyright = u'2019, Ironic Prometheus Exporter Developers' copyright = '2019, Ironic Prometheus Exporter Developers'
# Release notes are version independent. # Release notes are version independent.
# The short X.Y version. # The short X.Y version.
@ -221,8 +221,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'IronicPrometheusExporterReleaseNotes.tex', ('index', 'IronicPrometheusExporterReleaseNotes.tex',
u'Ironic Prometheus Exporter Release Notes Documentation', 'Ironic Prometheus Exporter Release Notes Documentation',
u'Ironic Prometheus Exporter Developers', 'manual'), 'Ironic Prometheus Exporter 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
@ -252,8 +252,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'ironicprometheusexporterreleasenotes', ('index', 'ironicprometheusexporterreleasenotes',
u'Ironic Prometheus Exporter Release Notes Documentation', 'Ironic Prometheus Exporter Release Notes Documentation',
[u'Ironic Prometheus Exporter Developers'], 1) ['Ironic Prometheus Exporter Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -267,8 +267,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'IronicPrometheusExporterReleaseNotes', ('index', 'IronicPrometheusExporterReleaseNotes',
u'Ironic Prometheus Exporter Release Notes Documentation', 'Ironic Prometheus Exporter Release Notes Documentation',
u'Ironic Prometheus Exporter Developers', 'Ironic Prometheus Exporter Developers',
'IronicPrometheusExporterReleaseNotes', 'IronicPrometheusExporterReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),