Try to improve support for bogus xml feed

master
pictuga 2013-05-05 15:32:57 +02:00
parent b34ecb8ad3
commit 32514941b4
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ class XMLMap(object):
else:
out = self._xml.__getattr__(tag)
return unicode(out) if self._str else out
return out.text.encode('utf-8') if self._str else out
def __getitem__(self, tag):
if self.__contains__(tag):