remove unicode from code

Change-Id: Icd0e728afadade109ef018ef2ae540357bf74808
This commit is contained in:
zhangboye 2021-01-03 16:53:37 +08:00
parent 1a133a3320
commit ca9146bf6d
2 changed files with 10 additions and 10 deletions

View File

@ -39,7 +39,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2016-2019, OpenStack Foundation' copyright = '2016-2019, 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
@ -114,8 +114,8 @@ smartquotes_excludes = {'builders': ['latex']}
latex_documents = [( latex_documents = [(
'index', 'index',
'doc-python-octaviaclient.tex', 'doc-python-octaviaclient.tex',
u'Octavia Python Client Documentation', 'Octavia Python Client Documentation',
u'OpenStack Octavia Team', 'OpenStack Octavia Team',
'manual' 'manual'
)] )]

View File

@ -59,7 +59,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.
@ -188,8 +188,8 @@ htmlhelp_basename = 'PythonOctaviaClientReleaseNotesdoc'
# documentclass [howto, manual, or own class]). # documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'PythonOctaviaClientReleaseNotes.tex', ('index', 'PythonOctaviaClientReleaseNotes.tex',
u'python-octaviaclient Release Notes Documentation', 'python-octaviaclient Release Notes Documentation',
u'Octavia Developers', 'manual'), 'Octavia 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
@ -220,8 +220,8 @@ latex_documents = [
man_pages = [ man_pages = [
('index', ('index',
'pythonoctaviaclientreleasenotes', 'pythonoctaviaclientreleasenotes',
u'python-octaviaclient Release Notes Documentation', 'python-octaviaclient Release Notes Documentation',
[u'Octavia Developers'], 1) ['Octavia Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -236,8 +236,8 @@ man_pages = [
texinfo_documents = [ texinfo_documents = [
('index', ('index',
'PythonOctaviaClientReleaseNotes', 'PythonOctaviaClientReleaseNotes',
u'python-octaviaclient Release Notes Documentation', 'python-octaviaclient Release Notes Documentation',
u'Octavia Developers', 'PythonOctaviaClientReleaseNotes', 'Octavia Developers', 'PythonOctaviaClientReleaseNotes',
'OpenStack client plugin for Octavia.', 'OpenStack client plugin for Octavia.',
'Miscellaneous'), 'Miscellaneous'),
] ]