remove unicode from code

Change-Id: Iaaf58b009ea6abea1e7fb32cd87c6aac6e18ac85
This commit is contained in:
zhangboye 2021-01-03 17:06:29 +08:00
parent 0b2fa40318
commit 20a10f0fb5
2 changed files with 12 additions and 12 deletions

View File

@ -39,8 +39,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Mistral Client'
copyright = u'2016, Mistral Contributors'
project = 'Mistral Client'
copyright = '2016, Mistral Contributors'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
@ -95,8 +95,8 @@ htmlhelp_basename = 'Mistraldoc'
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'mistral_client', u'Mistral Client Documentation',
[u'Mistral Contributors'], 1)
('index', 'mistral_client', 'Mistral Client Documentation',
['Mistral Contributors'], 1)
]
# -- Options for openstackdocstheme -------------------------------------------

View File

@ -54,8 +54,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Mistral Client Release Notes'
copyright = u'2016, Mistral developers'
project = 'Mistral Client Release Notes'
copyright = '2016, Mistral developers'
# Release notes are version independent.
# The short X.Y version.
@ -187,8 +187,8 @@ latex_elements = {
# documentclass [howto/manual]).
latex_documents = [
('index', 'MistralClientReleaseNotes.tex',
u'Mistral Client Release Notes Documentation',
u'Mistral developers', 'manual'),
'Mistral Client Release Notes Documentation',
'Mistral developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -218,8 +218,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'mistral_clientreleasenotes',
u'Mistral Client Release Notes Documentation',
[u'Mistral developers'], 1)
'Mistral Client Release Notes Documentation',
['Mistral developers'], 1)
]
# If true, show URL addresses after external links.
@ -233,8 +233,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'MistralClientReleaseNotes',
u'Mistral Client Release Notes Documentation',
u'Mistral developers', 'MistralClientReleaseNotes',
'Mistral Client Release Notes Documentation',
'Mistral developers', 'MistralClientReleaseNotes',
'One line description of project.', 'Miscellaneous'),
]