summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorniuke <niuke19970315@163.com>2022-08-18 16:42:40 +0800
committerDouglas Mendizábal <dmendiza@redhat.com>2022-09-16 15:40:20 +0000
commitf1300ee2928c94999a7364e3fdd17fa07881c335 (patch)
treeacec82cc0e62410e8b4f3b8dd7c1df29cd72b2bd
parent25c95e722176d876583bddf640144eec32156927 (diff)
downloadpycadf-f1300ee2928c94999a7364e3fdd17fa07881c335.tar.gz
remove unicode prefix from code
Change-Id: Ie842be912d9169133cd9990846f212bb50690766
-rw-r--r--doc/source/conf.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 2167d9f..43d7b2b 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -50,7 +50,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-copyright = u'2014, OpenStack Foundation'
+copyright = '2014, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -179,8 +179,8 @@ apidoc_excluded_paths = [
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'pyCADF.tex', u'pyCADF Documentation',
- u'OpenStack Foundation', 'manual'),
+ ('index', 'pyCADF.tex', 'pyCADF Documentation',
+ 'OpenStack Foundation', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -209,8 +209,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'pycadf', u'pyCADF Documentation',
- [u'OpenStack Foundation'], 1)
+ ('index', 'pycadf', 'pyCADF Documentation',
+ ['OpenStack Foundation'], 1)
]
# If true, show URL addresses after external links.
@@ -223,8 +223,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index', 'pyCADF', u'pyCADF Documentation',
- u'OpenStack Foundation', 'pyCADF', 'One line description of project.',
+ ('index', 'pyCADF', 'pyCADF Documentation',
+ 'OpenStack Foundation', 'pyCADF', 'One line description of project.',
'Miscellaneous'),
]