From 8a9f249c09c87424a1af514ea25d42a5530fcfc8 Mon Sep 17 00:00:00 2001 From: LiZekun <2954674728@qq.com> Date: Wed, 5 Jan 2022 10:10:34 +0800 Subject: [PATCH] remove unicode literal from code All strings are considered as unicode string from Python 3. This patch drops the explicit unicode literal (u'...') appearances from the unicode strings. Change-Id: I283b767d2d8329e9df977fa8bc135c082ae4e4ab --- 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 8008394..b57686f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -45,8 +45,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'OpenStack Command Line Client' -copyright = u'2012-2013 OpenStack Foundation' +project = 'OpenStack Command Line Client' +copyright = '2012-2013 OpenStack Foundation' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -221,8 +221,8 @@ htmlhelp_basename = 'OpenStackCommandLineClientdoc' # dir menu entry, description, category) texinfo_documents = [ ('index', 'OpenStackCommandLineClient', - u'OpenStack Command Line Client Documentation', - u'OpenStack', 'OpenStackCommandLineClient', + 'OpenStack Command Line Client Documentation', + 'OpenStack', 'OpenStackCommandLineClient', 'One line description of project.', 'Miscellaneous'), ]