summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranguoming <agm_daydayup@foxmail.com>2022-06-07 13:38:17 +0800
committerBrin Zhang <zhangbailin@inspur.com>2022-07-07 10:46:16 +0000
commit884ed5038bd24dc0afa6a5e94086b0f2c8ae84ba (patch)
tree974f108f0989208a0f45099df842081e8a084105
parent7b2af8856f28e89a6d523a98b13d561184a562cc (diff)
downloadpython-saharaclient-884ed5038bd24dc0afa6a5e94086b0f2c8ae84ba.tar.gz
Remove Python 2 support4.0.1
Python 2 has been deprecated. This patch removes all traces of six, unicode strings and Python 2 tweaks. Change-Id: I74696d02558e0fa93ea1775057db13b4f72aed02
-rw-r--r--doc/source/conf.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 15fdc68..87e35cc 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -60,8 +60,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Sahara Client'
-copyright = u'2013, OpenStack Foundation'
+project = 'Sahara Client'
+copyright = '2013, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation
@@ -199,8 +199,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'saharaclientdoc.tex', u'Sahara Client',
- u'OpenStack Foundation', 'manual'),
+ ('index', 'saharaclientdoc.tex', 'Sahara Client',
+ 'OpenStack Foundation', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -229,8 +229,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'saharaclient', u'Sahara Client',
- [u'OpenStack Foundation'], 1)
+ ('index', 'saharaclient', 'Sahara Client',
+ ['OpenStack Foundation'], 1)
]
# If true, show URL addresses after external links.
@@ -243,8 +243,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index', 'Sahara Client', u'Sahara Client',
- u'OpenStack Foundation', 'Sahara Client', 'Sahara Client',
+ ('index', 'Sahara Client', 'Sahara Client',
+ 'OpenStack Foundation', 'Sahara Client', 'Sahara Client',
'Miscellaneous'),
]