summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwangjiaqi07 <wangjiaqi07@inspur.com>2022-08-25 10:25:30 +0800
committerwangjiaqi07 <wangjiaqi07@inspur.com>2022-08-25 10:25:40 +0800
commit80537809c5bcb93bc89bb7f3c8224635230f7542 (patch)
tree394533157fcca9124d9ec7742edeffa4468e7dc3
parent18ec45ed40c54f2df79754c1c038d1b8755af8a5 (diff)
downloadpython-ironicclient-80537809c5bcb93bc89bb7f3c8224635230f7542.tar.gz
remove unicode from code
Change-Id: If9318a262f7b023ec5e845e44a50e8e247f6e851
-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 caa4e51..e81cf7b 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -36,7 +36,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 = ['ironicclient.']
@@ -77,8 +77,8 @@ latex_documents = [
(
'index',
'doc-python-ironicclient.tex',
- u'Python Ironic Client Documentation',
- u'OpenStack LLC',
+ 'Python Ironic Client Documentation',
+ 'OpenStack LLC',
'manual'
),
]
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index 8e14414..abaca8e 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -61,8 +61,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Ironic Client Release Notes'
-copyright = u'2015, Ironic Developers'
+project = 'Ironic Client Release Notes'
+copyright = '2015, Ironic Developers'
# Release notes are version independent.
# The short X.Y version.
@@ -208,8 +208,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'IronicClientReleaseNotes.tex',
- u'Ironic Client Release Notes Documentation',
- u'Ironic Developers', 'manual'),
+ 'Ironic Client Release Notes Documentation',
+ 'Ironic Developers', 'manual'),
]
# 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).
man_pages = [
('index', 'ironicclientreleasenotes',
- u'Ironic Client Release Notes Documentation',
- [u'Ironic Developers'], 1)
+ 'Ironic Client Release Notes Documentation',
+ ['Ironic Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -254,8 +254,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'IronicClientReleaseNotes',
- u'Ironic Client Release Notes Documentation',
- u'Ironic Developers', 'IronicClientReleaseNotes',
+ 'Ironic Client Release Notes Documentation',
+ 'Ironic Developers', 'IronicClientReleaseNotes',
'Bare metal provisioning service client.',
'Miscellaneous'),
]