remove unicode prefix from code

Change-Id: I70f0112f1ee3066ffd9316d10b84b9ea5b7fc306
This commit is contained in:
niuke
2022-08-23 19:42:08 +08:00
parent f89d54f4b8
commit 4bf88b204f
2 changed files with 11 additions and 11 deletions

View File

@@ -28,7 +28,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_python_agent'] modindex_common_prefix = ['ironic_python_agent']
@@ -75,8 +75,8 @@ latex_documents = [
( (
'index', 'index',
'doc-ironic-python-agent.tex', 'doc-ironic-python-agent.tex',
u'Ironic Python Agent Documentation', 'Ironic Python Agent Documentation',
u'OpenStack Foundation', 'OpenStack Foundation',
'manual' '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'Ironic Python Agent Release Notes' project = 'Ironic Python Agent Release Notes'
copyright = u'2015, Ironic Python Agent Developers' copyright = '2015, Ironic Python Agent Developers'
# Release notes do not need a version number in the title, they # Release notes do not need a version number in the title, they
# cover multiple releases. # cover multiple releases.
@@ -212,8 +212,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'IronicPythonAgentReleaseNotes.tex', ('index', 'IronicPythonAgentReleaseNotes.tex',
u'Ironic Python Agent Release Notes Documentation', 'Ironic Python Agent Release Notes Documentation',
u'Ironic Python Agent Developers', 'manual'), 'Ironic Python Agent 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
@@ -243,8 +243,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'ironicpythonagentreleasenotes', ('index', 'ironicpythonagentreleasenotes',
u'Ironic Python Agent Release Notes Documentation', 'Ironic Python Agent Release Notes Documentation',
[u'Ironic Python Agent Developers'], 1) ['Ironic Python Agent Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@@ -258,8 +258,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'IronicPythonAgentReleaseNotes', ('index', 'IronicPythonAgentReleaseNotes',
u'Ironic Python Agent Release Notes Documentation', 'Ironic Python Agent Release Notes Documentation',
u'Ironic Python Agent Developers', 'IronicPythonAgentReleaseNotes', 'Ironic Python Agent Developers', 'IronicPythonAgentReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]