Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Commit

Permalink
Reformat src/conf.py to conform to latest python black rules
Browse files Browse the repository at this point in the history
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/
 * psf/black#2740
  • Loading branch information
nickva committed Jan 31, 2022
1 parent 6ec827e commit e74e7ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/conf.py
Expand Up @@ -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"
Expand Down

0 comments on commit e74e7ea

Please sign in to comment.