summaryrefslogtreecommitdiff
path: root/releasenotes/source
diff options
context:
space:
mode:
authorYuehuiLei <leiyuehui-s@inspur.com>2021-01-05 15:22:42 +0800
committerTatiana Ovchinnikova <t.v.ovtchinnikova@gmail.com>2021-02-12 13:05:27 -0600
commit87f498bee50be714c26dca449802dad012ddbac4 (patch)
treeebc4a80a584b9bac9e5c987227575959ccf637ea /releasenotes/source
parentcb7038d07ea75f575b3249cee146725752ef07f6 (diff)
downloadhorizon-87f498bee50be714c26dca449802dad012ddbac4.tar.gz
Drop the usage of unicode prefix from unicode strings
All strings are considered as unicode strings in python 3, so we no longer need "u" prefix (u'...'). Co-Authored-By: Akihiro Motoki <amotoki@gmail.com> Change-Id: I796d2fcdca066475bbf29d25cbf2aa67b2b2178b
Diffstat (limited to 'releasenotes/source')
-rw-r--r--releasenotes/source/conf.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index 13f6e1b81..d6e4b9dc3 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -75,7 +75,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'2015, Horizon Developers'
+copyright = '2015, Horizon Developers'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -204,8 +204,8 @@ htmlhelp_basename = 'HorizonReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'HorizonReleaseNotes.tex',
- u'Horizon Release Notes Documentation',
- u'Horizon Developers', 'manual'),
+ 'Horizon Release Notes Documentation',
+ 'Horizon Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -234,8 +234,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'horizonreleasenotes', u'Horizon Release Notes Documentation',
- [u'Horizon Developers'], 1)
+ ('index', 'horizonreleasenotes', 'Horizon Release Notes Documentation',
+ ['Horizon Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -248,8 +248,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index', 'HorizonReleaseNotes', u'Horizon Release Notes Documentation',
- u'Horizon Developers', 'HorizonReleaseNotes',
+ ('index', 'HorizonReleaseNotes', 'Horizon Release Notes Documentation',
+ 'Horizon Developers', 'HorizonReleaseNotes',
'Dashboard for OpenStack.',
'Miscellaneous'),
]