summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliyou01 <liyou01@inspur.com>2021-01-07 15:02:59 +0800
committerliyou01 <liyou01@inspur.com>2021-01-07 15:03:18 +0800
commit370be17fc53ff33872773728c8fa49883f33aca3 (patch)
treedd8512f2057fb9c354945e6d5b4ecef9ed6b75fa
parente4f2cf4a5f658b6b5823419f4e58252bff9f2afb (diff)
downloadgear-370be17fc53ff33872773728c8fa49883f33aca3.tar.gz
remove unicode from code
Change-Id: If93af8c01cbbaad4e64dc78fb651815a4de6e741
-rw-r--r--doc/source/conf.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index a0880b6..9f05b93 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -41,8 +41,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Gear'
-copyright = u'2013, OpenStack Foundation'
+project = 'Gear'
+copyright = '2013, OpenStack Foundation'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -184,8 +184,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'Gear.tex', u'Gear Documentation',
- u'OpenStack Foundation', 'manual'),
+ ('index', 'Gear.tex', 'Gear Documentation',
+ 'OpenStack Foundation', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -214,10 +214,10 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'gear', u'Gear Full Documentation',
- [u'OpenStack Foundation'], 1),
- ('geard', 'geard', u'async pure python Gearman daemon',
- [u'OpenStack Foundation'], 8),
+ ('index', 'gear', 'Gear Full Documentation',
+ ['OpenStack Foundation'], 1),
+ ('geard', 'geard', 'async pure python Gearman daemon',
+ ['OpenStack Foundation'], 8),
]
# If true, show URL addresses after external links.
@@ -230,8 +230,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index', 'Gear', u'Gear Documentation',
- u'OpenStack Foundation', 'Gear', 'One line description of project.',
+ ('index', 'Gear', 'Gear Documentation',
+ 'OpenStack Foundation', 'Gear', 'One line description of project.',
'Miscellaneous'),
]