From e00550d0d4a25e92bbbcf2e3b55fc7ee24ca80ef Mon Sep 17 00:00:00 2001 From: Gabriel Menezes Date: Wed, 28 Oct 2015 17:28:52 -0200 Subject: [PATCH] minor bug on setup.py, forgot that Popen returns bytes instead of string --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e2e2101..a1caa30 100644 --- a/setup.py +++ b/setup.py @@ -9,14 +9,14 @@ process = subprocess.Popen(['pandoc', '--from=markdown', "--to=rst", "README.md"], stdout=subprocess.PIPE) out, err = process.communicate() - long_description = out + long_description = str(out, 'utf8') setup( name='pystalkd', version='1.2.0', packages=['pystalkd'], url='https://github.com/menezes-/pystalkd', - download_url='https://github.com/menezes-/pystalkd/archive/master.zip', + download_url='https://github.com/menezes-/pystalkd/archive/1.2.zip', keywords=['beanstalkd', 'python3', 'bindings'], license='Apache-2.0', author='Gabriel',