remove unicode prefix from code

Change-Id: I28bfa2a34222dae4ede0dad527f264eee4d5d0c4
This commit is contained in:
niuke 2022-08-08 15:24:30 +08:00
parent e29b187151
commit 0b1bfadebd
2 changed files with 14 additions and 14 deletions

View File

@ -70,8 +70,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'OSprofiler' project = 'OSprofiler'
copyright = u'2016, OpenStack Foundation' copyright = '2016, OpenStack Foundation'
# List of patterns, relative to source directory, that match files and # List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files. # directories to ignore when looking for source files.
@ -111,8 +111,8 @@ latex_elements = {}
latex_documents = [ latex_documents = [
('index', ('index',
'%s.tex' % project, '%s.tex' % project,
u'%s Documentation' % project, '%s Documentation' % project,
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', 'manual'),
] ]
# -- Options for Texinfo output ----------- # -- Options for Texinfo output -----------
@ -124,8 +124,8 @@ texinfo_documents = [
( (
'index', 'index',
'OSprofiler', 'OSprofiler',
u'OSprofiler Documentation', 'OSprofiler Documentation',
u'OSprofiler Team', 'OSprofiler Team',
'OSprofiler', 'OSprofiler',
'One line description of project.', 'One line description of project.',
'Miscellaneous' 'Miscellaneous'

View File

@ -58,8 +58,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'osprofiler Release Notes' project = 'osprofiler Release Notes'
copyright = u'2016, osprofiler Developers' copyright = '2016, osprofiler Developers'
# Release notes do not need a version in the title, they span # Release notes do not need a version in the title, they span
# multiple versions. # multiple versions.
@ -209,8 +209,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'osprofilerReleaseNotes.tex', ('index', 'osprofilerReleaseNotes.tex',
u'osprofiler Release Notes Documentation', 'osprofiler Release Notes Documentation',
u'osprofiler Developers', 'manual'), 'osprofiler 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
@ -240,8 +240,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'osprofilerReleaseNotes', ('index', 'osprofilerReleaseNotes',
u'osprofiler Release Notes Documentation', 'osprofiler Release Notes Documentation',
[u'osprofiler Developers'], 1) ['osprofiler Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -255,8 +255,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'osprofilerReleaseNotes', ('index', 'osprofilerReleaseNotes',
u'osprofiler Release Notes Documentation', 'osprofiler Release Notes Documentation',
u'osprofiler Developers', 'osprofilerReleaseNotes', 'osprofiler Developers', 'osprofilerReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]