summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorniuke <niuke19970315@163.com>2022-08-23 19:42:08 +0800
committerniuke <niuke19970315@163.com>2022-08-23 19:44:10 +0800
commit4bf88b204f27489fef0b97c66232a9e34a8d0806 (patch)
tree013f25b728b4d01f0052d7607ba4fe9cb589aae5
parentf89d54f4b89cdf3b5b079f6b48d26983f266b6a2 (diff)
downloadironic-python-agent-4bf88b204f27489fef0b97c66232a9e34a8d0806.tar.gz
remove unicode prefix from code
Change-Id: I70f0112f1ee3066ffd9316d10b84b9ea5b7fc306
-rw-r--r--doc/source/conf.py6
-rw-r--r--releasenotes/source/conf.py16
2 files changed, 11 insertions, 11 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 0dd99be2..4f0ab6d8 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -28,7 +28,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_python_agent']
@@ -75,8 +75,8 @@ latex_documents = [
(
'index',
'doc-ironic-python-agent.tex',
- u'Ironic Python Agent Documentation',
- u'OpenStack Foundation',
+ 'Ironic Python Agent Documentation',
+ 'OpenStack Foundation',
'manual'
),
]
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index aec5c02c..31598404 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -55,8 +55,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Ironic Python Agent Release Notes'
-copyright = u'2015, Ironic Python Agent Developers'
+project = 'Ironic Python Agent Release Notes'
+copyright = '2015, Ironic Python Agent Developers'
# Release notes do not need a version number in the title, they
# cover multiple releases.
@@ -212,8 +212,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'IronicPythonAgentReleaseNotes.tex',
- u'Ironic Python Agent Release Notes Documentation',
- u'Ironic Python Agent Developers', 'manual'),
+ 'Ironic Python Agent Release Notes Documentation',
+ 'Ironic Python Agent Developers', 'manual'),
]
# 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).
man_pages = [
('index', 'ironicpythonagentreleasenotes',
- u'Ironic Python Agent Release Notes Documentation',
- [u'Ironic Python Agent Developers'], 1)
+ 'Ironic Python Agent Release Notes Documentation',
+ ['Ironic Python Agent Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -258,8 +258,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'IronicPythonAgentReleaseNotes',
- u'Ironic Python Agent Release Notes Documentation',
- u'Ironic Python Agent Developers', 'IronicPythonAgentReleaseNotes',
+ 'Ironic Python Agent Release Notes Documentation',
+ 'Ironic Python Agent Developers', 'IronicPythonAgentReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]