Fix typo in first_available_file error path

parent 956e9266
...@@ -61,7 +61,7 @@ class ActionModule(object): ...@@ -61,7 +61,7 @@ class ActionModule(object):
break break
if not found: if not found:
results=dict(failed=True, msg="could not find src in first_available_file list") results=dict(failed=True, msg="could not find src in first_available_file list")
return ReturnData(conn=conn, results=results) return ReturnData(conn=conn, result=results)
source = utils.template(self.runner.basedir, source, inject) source = utils.template(self.runner.basedir, source, inject)
source = utils.path_dwim(self.runner.basedir, source) source = utils.path_dwim(self.runner.basedir, source)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment