Entropy/entropyTools:

- fix dict_from_xml_extended method


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@3074 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2009-02-25 12:24:40 +00:00
parent e7f1dc863e
commit b287f7c7b7
+1 -1
View File
@@ -2542,7 +2542,7 @@ def dict_from_xml_extended(xml_string):
data = item.firstChild.data
except AttributeError:
data = ''
mydict[key] = mytype_m(data)
mydict[key] = mytype_m(eval(data))
return mydict
def xml_from_dict(dictionary):