remove unicode prefix from code

Change-Id: I9c7b6bfaf91303707947ff3454e4084cea4a6689
This commit is contained in:
niuke 2022-08-15 09:00:48 +08:00
parent 85fb7d3625
commit 724510972c

View File

@ -59,7 +59,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2015, Manila Developers' copyright = '2015, Manila Developers'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -202,8 +202,8 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'ManilaReleaseNotes.tex', u'Manila Release Notes Documentation', ('index', 'ManilaReleaseNotes.tex', 'Manila 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
@ -232,8 +232,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', 'manilareleasenotes', u'Manila Release Notes Documentation', ('index', 'manilareleasenotes', 'Manila 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.
@ -246,8 +246,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', 'ManilaReleaseNotes', u'Manila Release Notes Documentation', ('index', 'ManilaReleaseNotes', 'Manila Release Notes Documentation',
u'Manila Developers', 'ManilaReleaseNotes', 'Manila Developers', 'ManilaReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]