Fix potential bug in parameter passing

pull/11825/head
Toshio Kuratomi 9 years ago
parent 13b8a57d3d
commit 91a77b8603

@ -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

Loading…
Cancel
Save