int_loop_check.py: Fix output formatting

Signed-off-by: Tomasz Michalak <tmichalak@antmicro.com>
This commit is contained in:
Tomasz Michalak 2019-07-15 10:04:37 +02:00
parent 24d852c016
commit d750e4fb43
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def check_made_progress(todo_dir, max_iter, min_progress):
made_progress = prev_iteration - cur_iteration > min_progress
if not made_progress:
print(
"Between iteration %d and iteration %d only %d pips were solved. Terminating iteration."
"Between iteration {} and iteration {} only {} pips were solved. Terminating iteration."
.format(max_iter - 1, max_iter, prev_iteration - cur_iteration))
return made_progress