From 5c1321ac20eb7ea8ecb55ba4e7bfa1a974851dcc Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Sun, 9 Jun 2013 12:47:32 +0300 Subject: A few small fixes --- gsxws/xmltodict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gsxws/xmltodict.py') diff --git a/gsxws/xmltodict.py b/gsxws/xmltodict.py index b8973ae..25e0c6e 100644 --- a/gsxws/xmltodict.py +++ b/gsxws/xmltodict.py @@ -146,7 +146,7 @@ def _ConvertXmlToDictRecurse(node, dictclass): for child in node: # recursively add the element's children newitem = _ConvertXmlToDictRecurse(child, dictclass) - if nodedict.has_key(child.tag): + if child.tag in nodedict.keys(): # found duplicate tag, force a list if type(nodedict[child.tag]) is type([]): # append to existing list -- cgit v1.2.3