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' master_doc = 'index'
# General information about the project. # 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 # List of directories, relative to source directory, that shouldn't be searched
# for source files. # for source files.
@ -87,8 +87,8 @@ latex_use_xindy = False
# (source start file, target name, title, author, documentclass # (source start file, target name, title, author, documentclass
# [howto/manual]). # [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'Manila-client.tex', u'Manila Python Client Documentation', ('index', 'Manila-client.tex', 'Manila Python Client Documentation',
u'Manila contributors', 'manual'), 'Manila contributors', '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

View File

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