[unicode] error in setup

This commit is contained in:
mzwiessele 2015-10-07 13:36:11 +01:00
parent 5774a22c9a
commit 78128ea218

View file

@ -48,7 +48,7 @@ def read(fname):
except NameError:
#python 3
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return str(f.read(), 'utf-8')
return f.read()
def read_to_rst(fname):
try: