From aa1729bfd999fad51b68071b750309d09c3b5156 Mon Sep 17 00:00:00 2001 From: Justin Unwin Date: Wed, 17 Feb 2016 23:23:43 +0200 Subject: [PATCH] remove encoding for the open statement in the setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0e5863e..a9f8ffb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ def read(f): here = os.path.abspath(os.path.dirname(__file__)) - return open(os.path.join(here, f), encoding='utf-8').read().strip() + return open(os.path.join(here, f)).read().strip() setup(