From e74e7ea3fec8801311a733c2f1dde649b8679085 Mon Sep 17 00:00:00 2001 From: Nick Vatamaniuc Date: Mon, 31 Jan 2022 11:26:18 -0500 Subject: [PATCH] Reformat src/conf.py to conform to latest python black rules Python black removed Python 2 support so it now flags the `u` prefixed strings. We picked up python black 22.1: ``` Collecting black Downloading black-22.1.0-py3-none-any.whl (160 kB) ``` It removed python 2 support: * https://pypi.org/project/black/22.1.0/ * https://github.com/psf/black/pull/2740 --- src/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/conf.py b/src/conf.py index 550e80dd..7eecf818 100644 --- a/src/conf.py +++ b/src/conf.py @@ -36,12 +36,12 @@ version = "3.2" release = "3.2.0" -project = u"Apache CouchDB\u00ae" +project = "Apache CouchDB\u00ae" -copyright = u"%d, %s" % ( +copyright = "%d, %s" % ( datetime.datetime.now().year, - u"Apache Software Foundation. CouchDB\u00ae is a registered trademark of the " - + u"Apache Software Foundation", + "Apache Software Foundation. CouchDB\u00ae is a registered trademark of the " + + "Apache Software Foundation", ) primary_domain = "http"