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)
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') parseString( response)
dom = minidom.