Also hide the before state of files with --diff and no_log

pull/14390/head
Toshio Kuratomi 9 years ago
parent 06b2400aae
commit 0f15e59cb2

@ -617,7 +617,10 @@ 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 ]]"
if self._play_context.no_log:
if 'before' in diff:
diff["before"] = ""
if 'after' in diff:
diff["after"] = " [[ Diff output has been hidden because 'no_log: true' was specified for this result ]]"
return diff

Loading…
Cancel
Save