From f3f0b3027e08bec00b5d6c8e89bf4e5327e47e7e Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 20 Nov 2020 11:03:44 +0800 Subject: [PATCH] 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 --- doc/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' -- 2.47.3