summaryrefslogtreecommitdiff
path: root/doc/source/conf.py
diff options
context:
space:
mode:
authorTakashi Kajinami <tkajinam@redhat.com>2022-05-17 23:07:02 +0900
committerTakashi Kajinami <tkajinam@redhat.com>2022-05-18 13:31:28 +0000
commit771eb8640288bce0f4976d6c8481ccf27f94ced9 (patch)
tree64a6bb81571d018114b17c03a71523219a2a2f2a /doc/source/conf.py
parent69125bfd07398245480e783415352a2ed0c5ee92 (diff)
downloadpython-barbicanclient-771eb8640288bce0f4976d6c8481ccf27f94ced9.tar.gz
Remove unicode literal5.4.0
... because u'...' is equivalent to '...' in Python 3. Also, removed the unicode prefix from example outputs because it is no longer shown in Python 3. Change-Id: I1f8fbec1d711659872cb07d2dcef9e33d5a9d21a
Diffstat (limited to 'doc/source/conf.py')
-rwxr-xr-xdoc/source/conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 7579242..298a8b0 100755
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -38,7 +38,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'2014, OpenStack Foundation'
+copyright = '2014, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@@ -69,8 +69,8 @@ htmlhelp_basename = 'python-barbicanclientdoc'
latex_documents = [
('index',
'doc-python-barbicanclient.tex',
- u'python-barbicanclient Documentation',
- u'OpenStack Foundation', 'manual'),
+ 'python-barbicanclient Documentation',
+ 'OpenStack Foundation', 'manual'),
]
latex_use_xindy = False