From 9b6d4ca9cdfb3f742930dd53d405c8f8b3fff79d Mon Sep 17 00:00:00 2001 From: niuke Date: Sat, 6 Aug 2022 20:48:13 +0800 Subject: [PATCH] remove unicode literal from code Change-Id: Ia8508fe3e46fd7f2531e21fb2bb5745076f6d4b0 --- releasenotes/source/conf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 12ec71842..d4b8c4a75 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -64,8 +64,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Ironic Inspector Release Notes' -copyright = u'2015, Ironic Inspector Developers' +project = 'Ironic Inspector Release Notes' +copyright = '2015, Ironic Inspector Developers' # Release notes are version independent. # The short X.Y version. @@ -218,8 +218,8 @@ latex_elements = { # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'IronicInspectorReleaseNotes.tex', - u'Ironic Inspector Release Notes Documentation', - u'Ironic Inspector Developers', 'manual'), + 'Ironic Inspector Release Notes Documentation', + 'Ironic Inspector Developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -249,8 +249,8 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'ironicinspectorreleasenotes', - u'Ironic Inspector Release Notes Documentation', - [u'Ironic Inspector Developers'], 1) + 'Ironic Inspector Release Notes Documentation', + ['Ironic Inspector Developers'], 1) ] # If true, show URL addresses after external links. @@ -264,8 +264,8 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'IronicInspectorReleaseNotes', - u'Ironic Inspector Release Notes Documentation', - u'Ironic Inspector Developers', 'IronicInspectorReleaseNotes', + 'Ironic Inspector Release Notes Documentation', + 'Ironic Inspector Developers', 'IronicInspectorReleaseNotes', 'One line description of project.', 'Miscellaneous'), ]