remove unicode from code

Change-Id: If077ddfeb6bd782bb3c87264e86c998466941590
This commit is contained in:
zhangboye 2021-01-03 16:01:56 +08:00
parent 07898faca6
commit 6b1a2f3ad4
2 changed files with 11 additions and 11 deletions

View File

@ -44,7 +44,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
copyright = u'Rackspace, based on work by Jacob Kaplan-Moss'
copyright = 'Rackspace, based on work by Jacob Kaplan-Moss'
# List of directories, relative to source directory, that shouldn't be searched
# for source files.
@ -87,8 +87,8 @@ latex_use_xindy = False
# (source start file, target name, title, author, documentclass
# [howto/manual]).
latex_documents = [
('index', 'Manila-client.tex', u'Manila Python Client Documentation',
u'Manila contributors', 'manual'),
('index', 'Manila-client.tex', 'Manila Python Client Documentation',
'Manila contributors', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of

View File

@ -60,8 +60,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'python-manilaclient Release Notes'
copyright = u'2016, Manila Developers'
project = 'python-manilaclient Release Notes'
copyright = '2016, Manila Developers'
# Release notes are version independent.
release = ''
@ -203,8 +203,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'PythonManilaclientReleaseNotes.tex',
u'python-manilaclient Release Notes Documentation',
u'Manila Developers', 'manual'),
'python-manilaclient Release Notes Documentation',
'Manila Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -234,8 +234,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'python-manilaclientreleasenotes',
u'python-manilaclient Release Notes Documentation',
[u'Manila Developers'], 1)
'python-manilaclient Release Notes Documentation',
['Manila Developers'], 1)
]
# If true, show URL addresses after external links.
@ -249,8 +249,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'PythonManilaclientReleaseNotes',
u'python-manilaclient Release Notes Documentation',
u'Manila Developers', 'PythonManilaclientReleaseNotes',
'python-manilaclient Release Notes Documentation',
'Manila Developers', 'PythonManilaclientReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]