job_status: fix estimate close #1567

This commit is contained in:
Alfredo Monclus
2025-03-25 20:46:52 -03:00
parent 5a27f6b1f7
commit bd44c03a8b

View File

@@ -139,7 +139,7 @@ class ScreenPanel:
hours = seconds // 3600
hour_units = ngettext("hour", "hours", hours)
seconds %= 3600
minutes = round(seconds / 60)
minutes = seconds // 60
min_units = ngettext("minute", "minutes", minutes)
seconds %= 60
sec_units = ngettext("second", "seconds", seconds)