summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-01-12 22:39:42 +0000
committerGerrit Code Review <review@openstack.org>2023-01-12 22:39:42 +0000
commit590f793c9fd0cb50df42e3e2f674028201bb102a (patch)
tree2318049cafcef0afcdec6d7e790c80a59899115a /doc
parent9b9c67771505ead95feb2525773f988a59436cf6 (diff)
parentfc8f9ac2edfb4daa0c48a650515de3e8eba18232 (diff)
downloadpython-glanceclient-590f793c9fd0cb50df42e3e2f674028201bb102a.tar.gz
Merge "Remove unicode-related Python2-only code"
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index bfe9b56..c2a4066 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -57,7 +57,7 @@ master_doc = 'index'
# General information about the project.
project = 'python-glanceclient'
-copyright = u'OpenStack Foundation'
+copyright = 'OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@@ -83,8 +83,8 @@ htmlhelp_basename = '%sdoc' % project
# -- Options for man page output ----------------------------------------------
# Grouping the document tree for man pages.
-# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual'
+# List of tuples 'sourcefile', 'target', 'title', 'Authors name', 'manual'
man_pages = [
- ('cli/glance', 'glance', u'Client for OpenStack Images API',
- [u'OpenStack Foundation'], 1),
+ ('cli/glance', 'glance', 'Client for OpenStack Images API',
+ ['OpenStack Foundation'], 1),
]