remove unicode from code

Change-Id: If79590fd1f390ad44aa96041240a09b3646f11bd
This commit is contained in:
zhangboye 2021-01-03 16:29:29 +08:00
parent 751df7101f
commit bbc32db6f4
2 changed files with 10 additions and 10 deletions

View File

@ -42,7 +42,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2013, OpenStack Foundation'
copyright = '2013, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@ -70,8 +70,8 @@ htmlhelp_basename = 'zunclientdoc'
latex_documents = [
('index',
'doc-python-zunclient.tex',
u'Python Zun Client Documentation',
u'Zun development team', 'manual'),
'Python Zun Client Documentation',
'Zun development team', 'manual'),
]
# Disable usage of xindy https://bugzilla.redhat.com/show_bug.cgi?id=1643664

View File

@ -55,7 +55,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2016, OpenStack Foundation'
copyright = '2016, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -186,8 +186,8 @@ htmlhelp_basename = 'GlanceReleaseNotesdoc'
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'GlanceReleaseNotes.tex', u'Glance Release Notes Documentation',
u'Glance Developers', 'manual'),
('index', 'GlanceReleaseNotes.tex', 'Glance Release Notes Documentation',
'Glance Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -216,8 +216,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'glancereleasenotes', u'Glance Release Notes Documentation',
[u'Glance Developers'], 1)
('index', 'glancereleasenotes', 'Glance Release Notes Documentation',
['Glance Developers'], 1)
]
# 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', 'GlanceReleaseNotes', u'Glance Release Notes Documentation',
u'Glance Developers', 'GlanceReleaseNotes',
('index', 'GlanceReleaseNotes', 'Glance Release Notes Documentation',
'Glance Developers', 'GlanceReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]