Fix potential bug in parameter passing
This commit is contained in:
parent
13b8a57d3d
commit
91a77b8603
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class ActionModule(ActionBase):
|
||||||
|
|
||||||
def run(self, tmp=None, task_vars=dict()):
|
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
|
# Remove special fields from the result, which can only be set
|
||||||
# internally by the executor engine. We do this only here in
|
# internally by the executor engine. We do this only here in
|
||||||
|
|
Loading…
Reference in a new issue