Commit bcf3697d authored by themylogin's avatar themylogin
Browse files

Fix job progress reporting

Showing with 1 addition and 1 deletion
+1 -1
......@@ -79,7 +79,7 @@ class CallMixin(object):
return None
def _job_callback(self, job):
text = f"[{job['progress']['percent']}%] {job['progress']['description']}..."
text = f"[{int(job['progress']['percent'] or 0)}%] {job['progress']['description']}..."
if text != self.job_last_printed_description:
print(text)
......
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