From 90ef2625100a7e2e553a026d9a9498c2b8596522 Mon Sep 17 00:00:00 2001 From: Sergii Golovatiuk Date: Wed, 28 Apr 2021 19:45:34 +0200 Subject: [PATCH] Remove unicode prefix Python 3 is unicode based by default. This patch removes unicode prefix as python 2.X is no longer supported. Change-Id: Ib86b5a7c337158a211c127b57e63f716800b654c --- 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 007331db..21de2adc 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -44,8 +44,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'tripleo-upgrade Release Notes' -copyright = u'2017, TripleO Developers' +project = 'tripleo-upgrade Release Notes' +copyright = '2017, TripleO Developers' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -200,8 +200,8 @@ latex_elements = { # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'tripleo-upgradeReleaseNotes.tex', - u'tripleo-upgrade Release Notes Documentation', - u'2016, TripleO Developers', 'manual'), + 'tripleo-upgrade Release Notes Documentation', + '2016, TripleO Developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -231,8 +231,8 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'tripleo-upgradereleasenotes', - u'tripleo-upgrade Release Notes Documentation', - [u'2016, TripleO Developers'], 1) + 'tripleo-upgrade Release Notes Documentation', + ['2016, TripleO Developers'], 1) ] # If true, show URL addresses after external links. @@ -246,8 +246,8 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'tripleo-upgradeReleaseNotes', - u'tripleo-upgrade Release Notes Documentation', - u'2016, TripleO Developers', 'tripleo-upgradeReleaseNotes', + 'tripleo-upgrade Release Notes Documentation', + '2016, TripleO Developers', 'tripleo-upgradeReleaseNotes', 'One line description of project.', 'Miscellaneous'), ]