From 0982123fdbe6efcbc2b9ffa6166f6629ea2c3c12 Mon Sep 17 00:00:00 2001 From: niuke Date: Wed, 24 Aug 2022 11:01:11 +0800 Subject: [PATCH] remove unicode prefix from code Change-Id: Id51cab6f2cca118d091b38ddb957dd2a5c220f5c --- doc/source/conf.py | 8 ++++---- releasenotes/source/conf.py | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 025a27b..e0287e4 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -36,8 +36,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'magnum-tempest-plugin' -copyright = u'2017, OpenStack Developers' +project = 'magnum-tempest-plugin' +copyright = '2017, OpenStack Developers' # openstackdocstheme options openstackdocs_repo_name = 'openstack/magnum-tempest-plugin' @@ -72,8 +72,8 @@ htmlhelp_basename = '%sdoc' % project latex_documents = [ ('index', '%s.tex' % project, - u'%s Documentation' % project, - u'OpenStack Developers', 'manual'), + '%s Documentation' % project, + 'OpenStack Developers', 'manual'), ] # Example configuration for intersphinx: refer to the Python standard library. diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 7f19d5a..373da2f 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -52,7 +52,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -copyright = u'2017, OpenStack Developers' +copyright = '2017, OpenStack Developers' # openstackdocstheme options openstackdocs_repo_name = 'openstack/magnum-tempest-plugin' @@ -196,8 +196,8 @@ htmlhelp_basename = 'magnum_tempest_pluginReleaseNotesdoc' # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'magnum_tempest_pluginReleaseNotes.tex', - u'magnum_tempest_plugin Release Notes Documentation', - u'OpenStack Foundation', 'manual'), + 'magnum_tempest_plugin Release Notes Documentation', + 'OpenStack Foundation', 'manual'), ] # 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). man_pages = [ ('index', 'magnum_tempest_pluginrereleasenotes', - u'magnum_tempest_plugin Release Notes Documentation', - [u'OpenStack Foundation'], 1) + 'magnum_tempest_plugin Release Notes Documentation', + ['OpenStack Foundation'], 1) ] # If true, show URL addresses after external links. @@ -242,8 +242,8 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'magnum_tempest_plugin ReleaseNotes', - u'magnum_tempest_plugin Release Notes Documentation', - u'OpenStack Foundation', 'magnum_tempest_pluginReleaseNotes', + 'magnum_tempest_plugin Release Notes Documentation', + 'OpenStack Foundation', 'magnum_tempest_pluginReleaseNotes', 'One line description of project.', 'Miscellaneous'), ]