phasma wrote:
> xml.parsers.expat.ExpatError: not well-formed (invalid token): line
> 538676, column 17
Looks like your XML file is broken in line 538676.
> try:
> handler = open(args[0], "r")
This should read
handler = open(args[0], "rb")
Maybe t
Hi.
I'm trying to disassemble bzipped file. If I use minidom.parseString,
I'm getting this error:
Traceback (most recent call last):
File "./replications.py", line 342, in ?
File "/usr/lib64/python2.4/xml/dom/minidom.py", line 1925, in
parseString
return expatbuilder.parseString(string)