Fix a typo of a function call

pull/18777/head
Tim Gerla 10 years ago committed by Matt Clay
parent dac24deeb4
commit 26698246c3

@ -501,7 +501,7 @@ def _set_none_to_blank(dictionary):
result = dictionary
for k in result.iterkeys():
if type(result[k]) == dict:
result[k] = _set_non_to_blank(result[k])
result[k] = _set_none_to_blank(result[k])
elif not result[k]:
result[k] = ""
return result

Loading…
Cancel
Save