From dab321fced34669851dd05c1cc85c3123d917d48 Mon Sep 17 00:00:00 2001 From: songwenping Date: Tue, 19 Apr 2022 15:18:05 +0800 Subject: [PATCH] Remove unnecessary unicode prefixes All strings are unicode by default in Python 3. No need to mark them as such. Change-Id: I976f4b94e8dadcb2a3a34310571c075f7da84edb --- doc/source/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 6a59ecbc26..eadf443aeb 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -40,8 +40,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'openstack-helm' -copyright = u'2016-2021, OpenStack Foundation' +project = 'openstack-helm' +copyright = '2016-2021, OpenStack Foundation' # If true, '()' will be appended to :func: etc. cross-reference text. add_function_parentheses = True @@ -87,8 +87,8 @@ htmlhelp_basename = '%sdoc' % project latex_documents = [ ('index', '%s.tex' % project, - u'%s Documentation' % project, - u'OpenStack Foundation', 'manual'), + '%s Documentation' % project, + 'OpenStack Foundation', 'manual'), ] # Example configuration for intersphinx: refer to the Python standard library.