hopefully this will fix some encoding problems

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Roman Rolinsky
2006-06-05 16:01:42 +00:00
parent e98e706227
commit e484fddf08
2 changed files with 6 additions and 13 deletions

View File

@@ -90,7 +90,7 @@ class xxxParamContent(xxxNode):
text = n.childNodes[0] # first child must be text node
assert text.nodeType == minidom.Node.TEXT_NODE
l.append(text)
data.append(str(text.data))
data.append(text.data)
else: # remove other
node.removeChild(n)
n.unlink()