summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-09-08 17:08:57 +0000
committerGerrit Code Review <review@openstack.org>2022-09-08 17:08:57 +0000
commitd456d5e18b6ee507ab182f668970351b67b63115 (patch)
treeaef0e4ec1a1784b4ba1e624c26bff34c47635278
parent7173ed90e39fd3e79b67aabde817682a51bb169a (diff)
parent80537809c5bcb93bc89bb7f3c8224635230f7542 (diff)
downloadpython-ironicclient-d456d5e18b6ee507ab182f668970351b67b63115.tar.gz
Merge "remove unicode from code"
-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'),
]