mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
5cf2781528
commit
a8b2b5b0c9
2 changed files with 2 additions and 2 deletions
|
@ -109,7 +109,7 @@ class CallbackModule(CallbackBase):
|
|||
self._display.banner(msg)
|
||||
|
||||
def v2_on_file_diff(self, result):
|
||||
if 'diff' in result._result:
|
||||
if 'diff' in result._result and result._result['diff'] != {}:
|
||||
self._display.display(self._get_diff(result._result['diff']))
|
||||
|
||||
def v2_playbook_item_on_ok(self, result):
|
||||
|
|
|
@ -77,5 +77,5 @@ class CallbackModule(CallbackBase):
|
|||
self._display.display("%s | UNREACHABLE!" % result._host.get_name(), color='yellow')
|
||||
|
||||
def v2_on_file_diff(self, result):
|
||||
if 'diff' in result._result:
|
||||
if 'diff' in result._result and result._result['diff'] != {}:
|
||||
self._display.display(self._get_diff(result._result['diff']))
|
||||
|
|
Loading…
Reference in a new issue