This commit is contained in:
mzwiessele 2015-10-07 13:28:36 +01:00
parent dc37c8ca23
commit 5774a22c9a

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 unicode(f.read(), 'utf-8')
return str(f.read(), 'utf-8')
def read_to_rst(fname):
try: