Skip to content

Commit

Permalink
minor bug on setup.py, forgot that Popen returns bytes instead of string
Browse files Browse the repository at this point in the history
  • Loading branch information
menezes- committed Oct 28, 2015
1 parent 1336705 commit e00550d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit e00550d

Please sign in to comment.