Comment 3 for bug 495058

Revision history for this message
Martin Janser (mjanser-deactivatedaccount) wrote :

It seems, that the document's encoding is declared as UTF-8, but in fact it is ISO-8859-1. Does the following code make sense for parsing the response?

response = unicode(response, 'iso-8859-1')
dom = minidom.parseString(response)