From 91a77b860387ebed146b9e4e604d007bfabf0b9e Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Fri, 31 Jul 2015 20:34:26 -0700 Subject: [PATCH] Fix potential bug in parameter passing --- lib/ansible/plugins/action/normal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/action/normal.py b/lib/ansible/plugins/action/normal.py index 763b1d5ea7..9ea962a240 100644 --- a/lib/ansible/plugins/action/normal.py +++ b/lib/ansible/plugins/action/normal.py @@ -23,7 +23,7 @@ class ActionModule(ActionBase): def run(self, tmp=None, task_vars=dict()): - results = self._execute_module(tmp, task_vars=task_vars) + results = self._execute_module(tmp=tmp, task_vars=task_vars) # Remove special fields from the result, which can only be set # internally by the executor engine. We do this only here in