View Single Post
Old 05-11-2007, 05:42 AM   #9
utrost
Junior Member
utrost began at the beginning.
 
Posts: 9
Karma: 10
Join Date: Mar 2007
Device: Sony reader
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')
utrost is offline   Reply With Quote