summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorCyril Roelandt <cyril@redhat.com>2022-09-13 16:15:13 +0200
committerCyril Roelandt <cyril@redhat.com>2022-11-14 11:49:33 +0100
commitfc8f9ac2edfb4daa0c48a650515de3e8eba18232 (patch)
tree112965eb23abb08879f182deb9b709c2f52c7bd2 /releasenotes
parenta3f13bdcb4108933fe6d99e9c4573ca74b52c5e5 (diff)
downloadpython-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 'releasenotes')
-rw-r--r--releasenotes/source/conf.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index d20e2f4..907b784 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -55,8 +55,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'glanceclient Release Notes'
-copyright = u'2016, Glance Developers'
+project = 'glanceclient Release Notes'
+copyright = '2016, Glance Developers'
openstackdocs_repo_name = 'openstack/python-glanceclient'
openstackdocs_bug_project = 'python-glanceclient'
@@ -206,8 +206,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'glanceclientReleaseNotes.tex',
- u'glanceclient Release Notes Documentation',
- u'Glance Developers', 'manual'),
+ 'glanceclient Release Notes Documentation',
+ 'Glance Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -237,8 +237,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'glanceclientreleasenotes',
- u'glanceclient Release Notes Documentation',
- [u'Glance Developers'], 1)
+ 'glanceclient Release Notes Documentation',
+ ['Glance Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -252,8 +252,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'glanceclientReleaseNotes',
- u'glanceclient Release Notes Documentation',
- u'Glance Developers', 'glanceclientReleaseNotes',
+ 'glanceclient Release Notes Documentation',
+ 'Glance Developers', 'glanceclientReleaseNotes',
'Python bindings for the OpenStack Image service.',
'Miscellaneous'),
]