diff options
| author | Cyril Roelandt <cyril@redhat.com> | 2022-09-13 16:15:13 +0200 |
|---|---|---|
| committer | Cyril Roelandt <cyril@redhat.com> | 2022-11-14 11:49:33 +0100 |
| commit | fc8f9ac2edfb4daa0c48a650515de3e8eba18232 (patch) | |
| tree | 112965eb23abb08879f182deb9b709c2f52c7bd2 /doc/source | |
| parent | a3f13bdcb4108933fe6d99e9c4573ca74b52c5e5 (diff) | |
| download | python-glanceclient-fc8f9ac2edfb4daa0c48a650515de3e8eba18232.tar.gz | |
Remove unicode-related Python2-only code
This commit:
- removes the old "u" prefix from all strings
- removes the unicode_key_value_to_string function
Change-Id: I1da347e31e828fd2359f0935a4da47257116d4cb
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/conf.py | 8 |
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), ] |
