Thomas 'PointedEars' Lahn wrote: > with open(os.path.join(dirpath, name), 'r') as f:
SHOULD be
with open(os.path.join(dirpath, name), 'rb') as f:
(as in the original), else the some code units might not be read properly.
--
PointedEars
Bitte keine Kopien per E-Mail. / Please do not Cc: me.
--
http://mail.python.org/mailman/listinfo/python-list
