From 95e503cf1f5d67d077a269f0943106a2a866cd8c Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Wed, 23 Aug 2017 20:53:57 -0400 Subject: [PATCH] fix setup.py `.decode('utf-8')` is unnecessary and breaks on Python 3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f0ab78b39..b5cd3e2d5 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ package_name = "lbrynet" base_dir = os.path.abspath(os.path.dirname(__file__)) # Get the long description from the README file with open(os.path.join(base_dir, 'README.md')) as f: - long_description = f.read().decode('utf-8') + long_description = f.read() setup( name=package_name,