summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsongwenping <songwenping@inspur.com>2022-04-19 19:39:12 +0800
committersongwenping <songwenping@inspur.com>2022-04-19 19:39:35 +0800
commit145f060b51bc6da02e32f79f988cc9895ee13599 (patch)
treefd2f996b3928aeb89ead12609a6e14c539de5e65
parent5d17e5fb449558ee7b0caaad298c7a2fda764631 (diff)
downloadoslo-concurrency-145f060b51bc6da02e32f79f988cc9895ee13599.tar.gz
Remove unnecessary unicode prefixes4.5.1
Change-Id: I56651c1b83baaf443551686d7e8545eba2a0c7a1
-rw-r--r--doc/source/conf.py2
-rw-r--r--releasenotes/source/conf.py14
2 files changed, 8 insertions, 8 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index c2a7425..87c6ed1 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -34,7 +34,7 @@ openstackdocs_bug_tag = ''
master_doc = 'index'
# General information about the project.
-copyright = u'2014, OpenStack Foundation'
+copyright = '2014, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index 8d67723..a3dd5fb 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -57,7 +57,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'2016, oslo.concurrency Developers'
+copyright = '2016, oslo.concurrency Developers'
# Release notes do not need a version in the title, they span
# multiple versions.
@@ -197,8 +197,8 @@ htmlhelp_basename = 'oslo.concurrencyReleaseNotesDoc'
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'oslo.concurrencyReleaseNotes.tex',
- u'oslo.concurrency Release Notes Documentation',
- u'oslo.concurrency Developers', 'manual'),
+ 'oslo.concurrency Release Notes Documentation',
+ 'oslo.concurrency Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -228,8 +228,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'oslo.concurrencyReleaseNotes',
- u'oslo.concurrency Release Notes Documentation',
- [u'oslo.concurrency Developers'], 1)
+ 'oslo.concurrency Release Notes Documentation',
+ ['oslo.concurrency Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -243,8 +243,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'oslo.concurrencyReleaseNotes',
- u'oslo.concurrency Release Notes Documentation',
- u'oslo.concurrency Developers', 'oslo.concurrencyReleaseNotes',
+ 'oslo.concurrency Release Notes Documentation',
+ 'oslo.concurrency Developers', 'oslo.concurrencyReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]