remove unicode prefix from code

Change-Id: Id51cab6f2cca118d091b38ddb957dd2a5c220f5c
This commit is contained in:
niuke 2022-08-24 11:01:11 +08:00
parent 70d8e45514
commit 0982123fdb
2 changed files with 11 additions and 11 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'magnum-tempest-plugin' project = 'magnum-tempest-plugin'
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/magnum-tempest-plugin' openstackdocs_repo_name = 'openstack/magnum-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,7 +52,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017, OpenStack Developers' copyright = '2017, OpenStack Developers'
# openstackdocstheme options # openstackdocstheme options
openstackdocs_repo_name = 'openstack/magnum-tempest-plugin' openstackdocs_repo_name = 'openstack/magnum-tempest-plugin'
@ -196,8 +196,8 @@ htmlhelp_basename = 'magnum_tempest_pluginReleaseNotesdoc'
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'magnum_tempest_pluginReleaseNotes.tex', ('index', 'magnum_tempest_pluginReleaseNotes.tex',
u'magnum_tempest_plugin Release Notes Documentation', 'magnum_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
@ -227,8 +227,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'magnum_tempest_pluginrereleasenotes', ('index', 'magnum_tempest_pluginrereleasenotes',
u'magnum_tempest_plugin Release Notes Documentation', 'magnum_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.
@ -242,8 +242,8 @@ man_pages = [
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'magnum_tempest_plugin ReleaseNotes', ('index', 'magnum_tempest_plugin ReleaseNotes',
u'magnum_tempest_plugin Release Notes Documentation', 'magnum_tempest_plugin Release Notes Documentation',
u'OpenStack Foundation', 'magnum_tempest_pluginReleaseNotes', 'OpenStack Foundation', 'magnum_tempest_pluginReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]