[google-appengine] Re: XML parsing in GAE python

2011-09-08 Thread Tim Hoffman
Hi Did you know the dev SDK still doesn't support python 2.7. (Will soon but not right now) Have you tried running the same code on python 2.5 ? Though its probably not the problem. Have you actually looked at the value of val from your line dom_val = minidom.parseString(val) To see if it is

[google-appengine] Re: XML parsing in GAE python

2011-09-08 Thread voscausa
Maybe something is wrong with the encoding. Try this: dom_val = minidom.parseString(val.encode('utf-8')) -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit