From be5b93831f9f417e09572a11a64ef3cc9d98a5d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Wed, 20 Apr 2022 13:16:37 +0200 Subject: [PATCH] Remove unnecessary unicode prefixes Change-Id: Ibc10c61ee39731501867196ac6fa95b9d6d6c91d --- doc/source/conf.py | 8 ++++---- releasenotes/source/conf.py | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 402cc45..89289f4 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -54,8 +54,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Blazar dashboard' -copyright = u'2017, OpenStack Foundation' +project = 'Blazar dashboard' +copyright = '2017, OpenStack Foundation' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -195,6 +195,6 @@ latex_use_xindy = False latex_documents = [ ('index', 'doc-blazar-dashboard.tex', - u'Blazar Dashboard Documentation', - u'OpenStack', 'howto', True), + 'Blazar Dashboard Documentation', + 'OpenStack', 'howto', True), ] diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 8e57d02..3b79611 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -61,8 +61,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Blazar dashboard Release Notes' -copyright = u'2017, OpenStack Foundation' +project = 'Blazar dashboard Release Notes' +copyright = '2017, OpenStack Foundation' # Release notes are version independent # The full version, including alpha/beta/rc tags. @@ -209,8 +209,8 @@ latex_elements = { latex_documents = [ ('index', 'Blazar-dashboardReleaseNotes.tex', - u'Blazar dashboard Release Notes Documentation', - u'Blazar dashboard Developers', + 'Blazar dashboard Release Notes Documentation', + 'Blazar dashboard Developers', 'manual'), ] @@ -241,8 +241,8 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'blazar_dashboardreleasenotes', - u'Blazar dashboard Release Notes Documentation', - [u'Blazar dashboard Developers'], 1) + 'Blazar dashboard Release Notes Documentation', + ['Blazar dashboard Developers'], 1) ] # If true, show URL addresses after external links. @@ -256,8 +256,8 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'Blazar-dashboardReleaseNotes', - u'Blazar dashboard Release Notes Documentation', - u'Blazar dashboard Developers', 'Blazar-dashboardReleaseNotes', + 'Blazar dashboard Release Notes Documentation', + 'Blazar dashboard Developers', 'Blazar-dashboardReleaseNotes', 'Resource reservation service for OpenStack', 'Miscellaneous'), ]