mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix typo in first_available_file error path
This commit is contained in:
parent
956e926618
commit
f89f07871d
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class ActionModule(object):
|
|||
break
|
||||
if not found:
|
||||
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.path_dwim(self.runner.basedir, source)
|
||||
|
|
Loading…
Reference in a new issue