remove unicode from code

Change-Id: I9ffdd1f00af22f0ce5de11371041aecf4737ade2
This commit is contained in:
zhangtongjian 2021-01-05 17:14:20 +08:00
parent a4547526e0
commit e8615903e8

View File

@ -44,8 +44,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Blazar Specs'
copyright = u'2013-present, OpenStack Foundation'
project = 'Blazar Specs'
copyright = '2013-present, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -182,8 +182,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'doc-blazar-specs.tex', u'Blazar Specs',
u'OpenStack Foundation', 'manual', True),
('index', 'doc-blazar-specs.tex', 'Blazar Specs',
'OpenStack Foundation', 'manual', True),
]
# The name of an image file (relative to this directory) to place at the top of
@ -212,7 +212,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'Blazar-specs', u'Blazar Specs', [u'OpenStack Foundation'], 1)
('index', 'Blazar-specs', 'Blazar Specs', ['OpenStack Foundation'], 1)
]
# If true, show URL addresses after external links.
@ -225,7 +225,7 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'Blazar-specs', u'Blazar Specs', u'OpenStack Foundation',
('index', 'Blazar-specs', 'Blazar Specs', 'OpenStack Foundation',
'Blazar-specs', 'Design specifications for the Blazar project.',
'Miscellaneous'),
]