Remove unicode to adapt to Python3

Change-Id: I4d8de05aa8e7d0828957c33bda78038794621e95
This commit is contained in:
sunxifa 2021-01-03 11:17:42 +08:00
parent 21170fd070
commit 5aa867402f
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'2018-2019, OpenStack Octavia Team' copyright = '2018-2019, OpenStack Octavia Team'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/octavia-lib' openstackdocs_repo_name = 'openstack/octavia-lib'
@ -116,8 +116,8 @@ smartquotes_excludes = {'builders': ['latex']}
latex_documents = [( latex_documents = [(
'index', 'index',
'doc-octavia-lib.tex', 'doc-octavia-lib.tex',
u'Octavia Library Documentation', 'Octavia Library Documentation',
u'OpenStack Octavia Team', 'OpenStack Octavia Team',
'manual' 'manual'
)] )]

View File

@ -52,7 +52,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/octavia-lib' openstackdocs_repo_name = 'openstack/octavia-lib'
@ -189,8 +189,8 @@ htmlhelp_basename = 'octavia_libReleaseNotesdoc'
# documentclass [howto, manual, or own class]). # documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'octavia_libReleaseNotes.tex', ('index', 'octavia_libReleaseNotes.tex',
u'octavia_lib Release Notes Documentation', 'octavia_lib Release Notes Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', '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 = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'octavia_librereleasenotes', ('index', 'octavia_librereleasenotes',
u'octavia_lib Release Notes Documentation', 'octavia_lib Release Notes Documentation',
[u'OpenStack Foundation'], 1) ['OpenStack Foundation'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -235,8 +235,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'octavia_lib ReleaseNotes', ('index', 'octavia_lib ReleaseNotes',
u'octavia_lib Release Notes Documentation', 'octavia_lib Release Notes Documentation',
u'OpenStack Foundation', 'octavia_libReleaseNotes', 'OpenStack Foundation', 'octavia_libReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]