summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsongwenping <songwenping@inspur.com>2022-04-19 19:42:37 +0800
committersongwenping <songwenping@inspur.com>2022-04-19 19:43:00 +0800
commitb036fc11417faa2e48e663dda2030be94b5236ce (patch)
tree52963205517f8228e173264710d7020e70d1d175
parent27e82024826d8dec9da2dc328679168dfabd22ed (diff)
downloadoslo-context-b036fc11417faa2e48e663dda2030be94b5236ce.tar.gz
Remove unnecessary unicode prefixes
Change-Id: Id6bb6fb85f9989746066ac042661cd4782f153c4
-rw-r--r--doc/source/conf.py8
-rw-r--r--releasenotes/source/conf.py14
2 files changed, 11 insertions, 11 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index c3d54e3..ed4be64 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -38,8 +38,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'oslo.context'
-copyright = u'2016, OpenStack Foundation'
+project = 'oslo.context'
+copyright = '2016, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@@ -68,8 +68,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index',
'%s.tex' % project,
- u'%s Documentation' % project,
- u'OpenStack Foundation', 'manual'),
+ '%s Documentation' % project,
+ 'OpenStack Foundation', 'manual'),
]
# openstackdocstheme options
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index d653107..da43afa 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -54,7 +54,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'2016, oslo.context Developers'
+copyright = '2016, oslo.context Developers'
# Release notes do not need a version in the title, they span
# multiple versions.
@@ -188,8 +188,8 @@ htmlhelp_basename = 'oslo.contextReleaseNotesDoc'
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'oslo.contextReleaseNotes.tex',
- u'oslo.context Release Notes Documentation',
- u'oslo.context Developers', 'manual'),
+ 'oslo.context Release Notes Documentation',
+ 'oslo.context Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -218,8 +218,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'oslo.contextReleaseNotes',
- u'oslo.context Release Notes Documentation',
- [u'oslo.context Developers'], 1)
+ 'oslo.context Release Notes Documentation',
+ ['oslo.context Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -232,8 +232,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'oslo.contextReleaseNotes',
- u'oslo.context Release Notes Documentation',
- u'oslo.context Developers', 'oslo.contextReleaseNotes',
+ 'oslo.context Release Notes Documentation',
+ 'oslo.context Developers', 'oslo.contextReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]