Merge "Fix missing output call"

This commit is contained in:
Zuul 2020-06-05 04:52:26 +00:00 committed by Gerrit Code Review
commit f54ec76a4f
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class CallbackModule(DefaultCallback):
else: else:
if self._run_is_verbose(result): if self._run_is_verbose(result):
line.append('result=%s' % self._dump_results(result._result)) line.append('result=%s' % self._dump_results(result._result))
self._display.display(' | '.join(line), color=color) self._output(line, color)
def v2_runner_on_failed(self, result, ignore_errors=False): def v2_runner_on_failed(self, result, ignore_errors=False):
self._clean_results(result._result, result._task.action) self._clean_results(result._result, result._task.action)