From 26698246c3ef1c8fa252d9987c2e402a625acae2 Mon Sep 17 00:00:00 2001 From: Tim Gerla Date: Fri, 17 Oct 2014 10:47:17 -0700 Subject: [PATCH] Fix a typo of a function call --- lib/ansible/modules/cloud/ec2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/ec2.py b/lib/ansible/modules/cloud/ec2.py index a4776c74b83..a82b6a6b637 100644 --- a/lib/ansible/modules/cloud/ec2.py +++ b/lib/ansible/modules/cloud/ec2.py @@ -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