Merge pull request #457 from wiredfool/py3.x-install

restoring byte decode to utf-8 string
This commit is contained in:
Alex Clark ☺ 2013-12-20 14:14:10 -08:00
commit b4cb373fb0

View File

@ -587,7 +587,7 @@ setup(
description='Python Imaging Library (Fork)',
long_description=(
_read('README.rst') + b'\n' +
_read('CHANGES.rst')),
_read('CHANGES.rst')).decode('utf-8'),
author='Alex Clark (fork author)',
author_email='aclark@aclark.net',
url='http://python-imaging.github.io/',