Merge branch 'GP-831_ryanmkurtz_PR-2788_rafalh_ida6-exporter-non-ascii-fix' into GP-831_ryanmkurtz_ida-PRs

This commit is contained in:
Ryan Kurtz
2021-04-02 07:44:59 -04:00
@@ -261,7 +261,7 @@ class XmlExporter:
elif ch == '\'' : return "'"
elif ch == '"' : return """
elif ch == '\x7F': return ''
elif ord(ch) > 0x7F: return '&#x' + format((ord(ch),"x")) + ";"
elif ord(ch) > 0x7F: return '&#x' + format(ord(ch),"x") + ";"
return ch