From da5b860e5fec9ebb8f3020562d4e1b74bcbbe726 Mon Sep 17 00:00:00 2001 From: Ricter Z Date: Wed, 19 Oct 2016 12:20:14 +0800 Subject: [PATCH] fix bug in python3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 59e3bbf..d669769 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ with open('requirements.txt') as f: def long_description(): with codecs.open('README.md', 'rb') as f: - return f.read() + return str(f.read()) setup( name='nhentai',