Commit bcf8b6f1 authored by Łukasz Nowak's avatar Łukasz Nowak

Fix condition

parent e1b2a977
......@@ -153,7 +153,7 @@ def main():
finished = False
if finished:
break
if try_num > try_amount:
if try_num >= try_amount:
msg = try_info + ' Time exceeded, success not found.'
print(msg)
status_dict['stderr'] = msg
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment