remove unicode prefix from code

Change-Id: I59e8ae94eb83ae3a1ddcc99091e53686d2d55186
This commit is contained in:
niuke 2022-08-24 15:15:58 +08:00
parent 3bb577e338
commit 299c2afe14
2 changed files with 10 additions and 10 deletions

View File

@ -49,8 +49,8 @@ master_doc = 'index'
exclude_patterns = ['_build'] exclude_patterns = ['_build']
# General information about the project. # General information about the project.
project = u'TaskFlow' project = 'TaskFlow'
copyright = u'%s, OpenStack Foundation' % datetime.date.today().year copyright = '%s, OpenStack Foundation' % datetime.date.today().year
# If true, '()' will be appended to :func: etc. cross-reference text. # If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True add_function_parentheses = True

View File

@ -63,8 +63,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'taskflow Release Notes' project = 'taskflow Release Notes'
copyright = u'2016, taskflow Developers' copyright = '2016, taskflow Developers'
# Release do not need a version number in the title, they # Release do not need a version number in the title, they
# cover multiple versions. # cover multiple versions.
@ -215,8 +215,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'taskflowReleaseNotes.tex', ('index', 'taskflowReleaseNotes.tex',
u'taskflow Release Notes Documentation', 'taskflow Release Notes Documentation',
u'taskflow Developers', 'manual'), 'taskflow 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
@ -246,8 +246,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'taskflowreleasenotes', ('index', 'taskflowreleasenotes',
u'taskflow Release Notes Documentation', 'taskflow Release Notes Documentation',
[u'taskflow Developers'], 1) ['taskflow Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -261,8 +261,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'taskflowReleaseNotes', ('index', 'taskflowReleaseNotes',
u'taskflow Release Notes Documentation', 'taskflow Release Notes Documentation',
u'taskflow Developers', 'taskflowReleaseNotes', 'taskflow Developers', 'taskflowReleaseNotes',
'An OpenStack library for parsing configuration options from the command' 'An OpenStack library for parsing configuration options from the command'
' line and configuration files.', ' line and configuration files.',
'Miscellaneous'), 'Miscellaneous'),