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' master_doc = 'index'
# General information about the project. # 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. # If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True add_function_parentheses = True
@@ -70,8 +70,8 @@ htmlhelp_basename = 'zunclientdoc'
latex_documents = [ latex_documents = [
('index', ('index',
'doc-python-zunclient.tex', 'doc-python-zunclient.tex',
u'Python Zun Client Documentation', 'Python Zun Client Documentation',
u'Zun development team', 'manual'), 'Zun development team', 'manual'),
] ]
# Disable usage of xindy https://bugzilla.redhat.com/show_bug.cgi?id=1643664 # 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' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2016, OpenStack Foundation' copyright = '2016, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@@ -186,8 +186,8 @@ htmlhelp_basename = 'GlanceReleaseNotesdoc'
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'GlanceReleaseNotes.tex', u'Glance Release Notes Documentation', ('index', 'GlanceReleaseNotes.tex', 'Glance Release Notes Documentation',
u'Glance Developers', 'manual'), 'Glance Developers', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # 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 # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'glancereleasenotes', u'Glance Release Notes Documentation', ('index', 'glancereleasenotes', 'Glance Release Notes Documentation',
[u'Glance Developers'], 1) ['Glance Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@@ -230,8 +230,8 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'GlanceReleaseNotes', u'Glance Release Notes Documentation', ('index', 'GlanceReleaseNotes', 'Glance Release Notes Documentation',
u'Glance Developers', 'GlanceReleaseNotes', 'Glance Developers', 'GlanceReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]