removed extra 'changed' from debug output
This commit is contained in:
parent
c86feeaed9
commit
f7566ef1f1
1 changed files with 4 additions and 2 deletions
|
@ -208,8 +208,10 @@ class CallbackBase:
|
|||
del result._result['results']
|
||||
|
||||
def _clean_results(self, result, task_name):
|
||||
if 'invocation' in result and task_name in ['debug']:
|
||||
del result['invocation']
|
||||
if task_name in ['debug']:
|
||||
for remove_key in ('changed', 'invocation'):
|
||||
if remove_key in result:
|
||||
del result[remove_key]
|
||||
|
||||
|
||||
def set_play_context(self, play_context):
|
||||
|
|
Loading…
Reference in a new issue