Fix exception in unixy callback v2_runner_retry (#58801)
This commit is contained in:
parent
d1587bca41
commit
945e35ada2
1 changed files with 1 additions and 1 deletions
|
@ -236,6 +236,6 @@ class CallbackModule(CallbackModule_default):
|
|||
|
||||
def v2_runner_retry(self, result):
|
||||
msg = " Retrying... (%d of %d)" % (result._result['attempts'], result._result['retries'])
|
||||
if self._run_is_verbose(result, verbosity=2):
|
||||
if self._run_is_verbose(result):
|
||||
msg += "Result was: %s" % self._dump_results(result._result)
|
||||
self._display.display(msg, color=C.COLOR_DEBUG)
|
||||
|
|
Loading…
Reference in a new issue