Remove unicode to adapt to python3

Change-Id: I324d36a1e92c66556f73a839acbde425f669d2a3
This commit is contained in:
sunxifa 2021-01-03 17:28:15 +08:00
parent bd5f48ca18
commit f469a226d6
2 changed files with 9 additions and 9 deletions

View File

@ -53,7 +53,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017-2019, OpenStack Foundation' copyright = '2017-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
@ -143,8 +143,8 @@ smartquotes_excludes = {'builders': ['latex']}
latex_documents = [( latex_documents = [(
'index', 'index',
'doc-octavia-dashboard.tex', 'doc-octavia-dashboard.tex',
u'Octavia Dashboard Documentation', 'Octavia Dashboard Documentation',
u'OpenStack Octavia Team', 'OpenStack Octavia Team',
'manual' 'manual'
)] )]

View File

@ -64,8 +64,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, Octavia Developers' copyright = '2017, Octavia Developers'
author = u'Octavia Developers' author = 'Octavia Developers'
# 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.
@ -123,8 +123,8 @@ htmlhelp_basename = 'OctaviaDashboardReleaseNotesdoc'
# (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 = [
(master_doc, 'octavia-dashboard.tex', u'octavia-dashboard Documentation', (master_doc, 'octavia-dashboard.tex', 'octavia-dashboard Documentation',
u'Octavia Developers', 'manual'), 'Octavia Developers', 'manual'),
] ]
@ -133,7 +133,7 @@ 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 = [
(master_doc, 'octavia-dashboard', u'octavia-dashboard Documentation', (master_doc, 'octavia-dashboard', 'octavia-dashboard Documentation',
[author], 1) [author], 1)
] ]
@ -144,7 +144,7 @@ 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 = [
(master_doc, 'octavia-dashboard', u'octavia-dashboard Documentation', (master_doc, 'octavia-dashboard', 'octavia-dashboard Documentation',
author, 'octavia-dashboard', 'One line description of project.', author, 'octavia-dashboard', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]