Quote:
Originally Posted by EatingPie
Bugs
Still not handling unicode in input files.
-Pie
|
Hi EatingPie,
for my webbased conversion engine I use pylrs, too.
Maybe you should try instead open an input file like
f = open(infile, 'rb')
with
import codecs
f = codecs.open(infile, 'wU', 'utf-8')