Merge pull request #945 from antmicro/loop_check_print_format

int_loop_check.py: Fix output formatting
This commit is contained in:
litghost 2019-07-17 09:01:36 -07:00 committed by GitHub
commit db785ed575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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