Important fix in recursive function.

This commit is contained in:
juanifioren 2015-03-31 15:31:17 -03:00
parent 07e80d5d5c
commit a1df576d1c

View file

@ -56,7 +56,7 @@ class AbstractScopeClaims(object):
if not value:
del aux_dic[key]
elif type(value) is dict:
aux_dic[key] = clean_dic(value)
aux_dic[key] = self._clean_dic(value)
return aux_dic