Fix --diff to respect no_log task parameter.

This commit is contained in:
Toshio Kuratomi 2016-02-04 12:44:45 -08:00
parent 4b7b3794c9
commit e2a7ba35db

View file

@ -615,4 +615,7 @@ class ActionBase(with_metaclass(ABCMeta, object)):
diff['after_header'] = 'dynamically generated'
diff['after'] = source
if self._play_context.no_log and 'after' in diff:
diff["after"] = " [[ Diff output has been hidden because 'no_log: true' was specified for this result ]]"
return diff