remove unicode from code

Change-Id: I56e72f7bb4a6829ac9f96ec418b3359ae6cd8e3f
This commit is contained in:
wangjiaqi07 2022-08-25 09:34:29 +08:00
parent 5d3bc56e01
commit fddf48c9c4
2 changed files with 11 additions and 11 deletions

View File

@ -63,8 +63,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'senlin'
copyright = u'2015, OpenStack Foundation'
project = 'senlin'
copyright = '2015, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@ -96,8 +96,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index',
'%s.tex' % project,
u'%s Documentation' % project,
u'OpenStack Foundation', 'manual'),
'%s Documentation' % project,
'OpenStack Foundation', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.

View File

@ -59,7 +59,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'2015, Senlin Developers'
copyright = '2015, Senlin Developers'
# Release notes are version independent.
# The short X.Y version.
@ -194,8 +194,8 @@ htmlhelp_basename = 'SenlinReleaseNotesdoc'
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'SenlinReleaseNotes.tex', u'Senlin Release Notes Documentation',
u'Senlin Developers', 'manual'),
('index', 'SenlinReleaseNotes.tex', 'Senlin Release Notes Documentation',
'Senlin Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -224,8 +224,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'senlinreleasenotes', u'Senlin Release Notes Documentation',
[u'Senlin Developers'], 1)
('index', 'senlinreleasenotes', 'Senlin Release Notes Documentation',
['Senlin Developers'], 1)
]
# If true, show URL addresses after external links.
@ -238,8 +238,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'SenlinReleaseNotes', u'Senlin Release Notes Documentation',
u'Senlin Developers', 'SenlinReleaseNotes',
('index', 'SenlinReleaseNotes', 'Senlin Release Notes Documentation',
'Senlin Developers', 'SenlinReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]