Fix typo in `setup.py` (#656)

This typo was noticed when copy/pasting the `read` function into my own
`setup.py`.

Thanks a lot, Hynek!

modified:   setup.py
This commit is contained in:
Jürgen Gmach 2020-06-27 14:43:38 +02:00 committed by GitHub
parent 77914a4b27
commit cf0adc5d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
"""
Build an absolute path from *parts* and and return the contents of the
Build an absolute path from *parts* and return the contents of the
resulting file. Assume UTF-8 encoding.
"""
with codecs.open(os.path.join(HERE, *parts), "rb", "utf-8") as f: