remove unicode prefix from code

Change-Id: If83bb0d3b60852c4ffb09df021f538b171f0429f
This commit is contained in:
niuke 2022-08-22 19:05:04 +08:00
parent d16c741198
commit 875971cae2
2 changed files with 12 additions and 12 deletions

View File

@ -36,8 +36,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'mistral-tempest-plugin' project = 'mistral-tempest-plugin'
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/mistral-tempest-plugin' openstackdocs_repo_name = 'openstack/mistral-tempest-plugin'
@ -72,8 +72,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [ latex_documents = [
('index', ('index',
'%s.tex' % project, '%s.tex' % project,
u'%s Documentation' % project, '%s Documentation' % project,
u'OpenStack Developers', 'manual'), 'OpenStack Developers', 'manual'),
] ]
# Example configuration for intersphinx: refer to the Python standard library. # Example configuration for intersphinx: refer to the Python standard library.

View File

@ -52,8 +52,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'mistral-tempest-plugin Release Notes' project = 'mistral-tempest-plugin Release Notes'
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/mistral-tempest-plugin' openstackdocs_repo_name = 'openstack/mistral-tempest-plugin'
@ -213,8 +213,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'mistral-tempest-pluginReleaseNotes.tex', ('index', 'mistral-tempest-pluginReleaseNotes.tex',
u'mistral-tempest-plugin Release Notes Documentation', 'mistral-tempest-plugin Release Notes Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', '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
@ -244,8 +244,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'mistral-tempest-pluginrereleasenotes', ('index', 'mistral-tempest-pluginrereleasenotes',
u'mistral-tempest-plugin Release Notes Documentation', 'mistral-tempest-plugin Release Notes Documentation',
[u'OpenStack Foundation'], 1) ['OpenStack Foundation'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -259,8 +259,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'mistral-tempest-plugin ReleaseNotes', ('index', 'mistral-tempest-plugin ReleaseNotes',
u'mistral-tempest-plugin Release Notes Documentation', 'mistral-tempest-plugin Release Notes Documentation',
u'OpenStack Foundation', 'mistral-tempest-pluginReleaseNotes', 'OpenStack Foundation', 'mistral-tempest-pluginReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]