mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 09:13:12 +00:00
Fix a typo of a function call
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user