mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 23:31:27 +00:00
Fix syntax error in action plugin template.py
This commit is contained in:
@@ -160,7 +160,7 @@ class ActionModule(ActionBase):
|
||||
else:
|
||||
result=dict(changed=True)
|
||||
|
||||
if result.['changed'] and self._play_context.diff:
|
||||
if result['changed'] and self._play_context.diff:
|
||||
result['diff'] = dict(before=dest_contents, after=resultant, before_header=dest, after_header=source)
|
||||
|
||||
return result
|
||||
|
||||
Reference in New Issue
Block a user