summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorsongwenping <songwenping@inspur.com>2021-01-04 02:57:38 +0000
committerWenping Song <songwenping@inspur.com>2021-04-02 08:49:22 +0000
commitc7845314f5602c5d7e074944fa7a391bf2de2fdd (patch)
treed00befb7ba1003f9ce9fda235b770972fa3d234e /doc
parent7e96c8e854386f43604ad098a6ec7606ee676145 (diff)
downloadtempest-c7845314f5602c5d7e074944fa7a391bf2de2fdd.tar.gz
Remove unicode from code
In python 3, all strings are considered as unicode string. This patch drops the explicit unicode literal (u'...') or (u"..") appearances from the unicode strings. Change-Id: I64af1c7c7415cd4ab99b6a913fb84fecbc0a3bf1
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 59a2f64a4..b738fde7f 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -86,7 +86,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'2013, OpenStack QA Team'
+copyright = '2013, OpenStack QA Team'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -206,8 +206,8 @@ suppress_warnings = ['image.nonlocal_uri']
# (source start file, target name, title, author, documentclass
# [howto/manual]).
latex_documents = [
- ('index', 'doc-tempest.tex', u'Tempest Testing Project',
- u'OpenStack Foundation', 'manual'),
+ ('index', 'doc-tempest.tex', 'Tempest Testing Project',
+ 'OpenStack Foundation', 'manual'),
]
latex_use_xindy = False