Skip to content

Commit

Permalink
fix UnicodeDecodeError on Python 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Feb 15, 2015
1 parent 286fe80 commit b64a76a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from distutils.core import setup
import codecs

with open('README.rst') as file:
with codecs.open('README.rst', encoding='utf-8') as file:
long_description = file.read()

setup(name='stdeb',
Expand Down

0 comments on commit b64a76a

Please sign in to comment.