From cf0adc5d127edc479a8456df968d8cd61a1337a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Sat, 27 Jun 2020 14:43:38 +0200 Subject: [PATCH] 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 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 28a99914..24602433 100644 --- a/setup.py +++ b/setup.py @@ -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: