From 6bc060ee06fcdbf25258adb9b848907368bcf1c8 Mon Sep 17 00:00:00 2001 From: niuke Date: Sat, 6 Aug 2022 20:54:02 +0800 Subject: [PATCH] remove unicode literal from code Change-Id: I8d43a5864b5deb37be6c850115aa7edfe8ae9d30 --- releasenotes/source/conf.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index ef30515978..4b8010da93 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -60,7 +60,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -copyright = u'2016, Magnum developers' +copyright = '2016, Magnum developers' # Remove setting of version/release # The short X.Y version. @@ -195,8 +195,8 @@ htmlhelp_basename = 'MagnumReleaseNotesdoc' # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - ('index', 'MagnumReleaseNotes.tex', u'Magnum Release Notes Documentation', - u'2016, Magnum developers', 'manual'), + ('index', 'MagnumReleaseNotes.tex', 'Magnum Release Notes Documentation', + '2016, Magnum developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -225,8 +225,8 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'magnumreleasenotes', u'Magnum Release Notes Documentation', - [u'2016, Magnum developers'], 1) + ('index', 'magnumreleasenotes', 'Magnum Release Notes Documentation', + ['2016, Magnum developers'], 1) ] # If true, show URL addresses after external links. @@ -239,8 +239,8 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'MagnumReleaseNotes', u'Magnum Release Notes Documentation', - u'2016, Magnum developers', 'MagnumReleaseNotes', + ('index', 'MagnumReleaseNotes', 'Magnum Release Notes Documentation', + '2016, Magnum developers', 'MagnumReleaseNotes', 'One line description of project.', 'Miscellaneous'), ]