remove unicode from code

remove unicode from code

Change-Id: I4a5ecfccac4047803b069034575bda8e3baae985
This commit is contained in:
shanyunfan33 2022-01-26 17:29:08 +08:00
parent 44c33f2ccd
commit 2f43f651e8
2 changed files with 12 additions and 12 deletions

View File

@ -35,8 +35,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'mistral-lib' project = 'mistral-lib'
copyright = u'2017, Mistral Contributors' copyright = '2017, Mistral Contributors'
# 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
@ -64,8 +64,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [ latex_documents = [
('index', ('index',
'%s.tex' % project, '%s.tex' % project,
u'%s Documentation' % project, '%s Documentation' % project,
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', 'manual'),
] ]
# Example configuration for intersphinx: refer to the Python standard library. # Example configuration for intersphinx: refer to the Python standard library.

View File

@ -54,8 +54,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'mistral-lib Release Notes' project = 'mistral-lib Release Notes'
copyright = u'2016, OpenStack Foundation' copyright = '2016, OpenStack Foundation'
# Release notes are version independent # Release notes are version independent
@ -200,8 +200,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'MistralLibReleaseNotes.tex', ('index', 'MistralLibReleaseNotes.tex',
u'Mistral Library Release Notes Documentation', u'Mistral ' 'Mistral Library Release Notes Documentation', 'Mistral '
u'Library Developers', 'manual'), 'Library 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
@ -230,8 +230,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', 'mistrallibreleasenotes', u'Mistral Library Release Notes ' ('index', 'mistrallibreleasenotes', 'Mistral Library Release Notes '
u'Documentation', [u'Mistral Library Developers'], 1) 'Documentation', ['Mistral Library Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -244,8 +244,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', 'MistralLibReleaseNotes', u'Mistral Library Release Notes ' ('index', 'MistralLibReleaseNotes', 'Mistral Library Release Notes '
u'Documentation', u'Mistral Library Developers', 'Documentation', 'Mistral Library Developers',
'MistralLibReleaseNotes', 'One line description of project.', 'MistralLibReleaseNotes', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]