From: Kefu Chai Date: Fri, 20 Nov 2020 03:03:44 +0000 (+0800) Subject: doc/conf: drop "u" prefix from string literals X-Git-Tag: v16.1.0~439^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f3f0b3027e08bec00b5d6c8e89bf4e5327e47e7e;p=ceph.git doc/conf: drop "u" prefix from string literals since we've migrated to python3, there is no need to add "u" prefix anymore. Signed-off-by: Kefu Chai --- diff --git a/doc/conf.py b/doc/conf.py index 74ee96562338..f8715e8e6f5a 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -3,8 +3,8 @@ import shutil import sys import os -project = u'Ceph' -copyright = u'2016, Ceph authors and contributors. Licensed under Creative Commons Attribution Share Alike 3.0 (CC-BY-SA-3.0)' +project = 'Ceph' +copyright = '2016, Ceph authors and contributors. Licensed under Creative Commons Attribution Share Alike 3.0 (CC-BY-SA-3.0)' version = 'dev' release = 'dev'