correctly deal with changed (#31812)

This commit is contained in:
Brian Coca 2017-10-16 21:44:17 -04:00 committed by Jordan Borean
commit 21cdddce74
3 changed files with 7 additions and 2 deletions

View file

@ -10,7 +10,7 @@ from copy import deepcopy
from ansible.parsing.dataloader import DataLoader
from ansible.vars.manager import strip_internal_keys
_IGNORE = ('changed', 'failed', 'skipped')
_IGNORE = ('failed', 'skipped')
class TaskResult: