Skip to content
Snippets Groups Projects
Commit 54f1f269 authored by s2870355's avatar s2870355
Browse files

properly add in progress

parent 14e32996
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,7 @@ def print_info(compile_info, jobs, additional=None):
else:
completed_count = completed_count + 1
running_count = len(jobs)
running_count = len(jobs) + len(additional)
waiting_count = len(compile_info) - failed_count - completed_count - running_count
print("\U0001f7e9" * (completed_count) + "\U0001f7e5" * failed_count + "\U0001f7ea" * running_count + "\u2B1C" * waiting_count)
print("current:")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment