Tiny improvements for the throughput calculation banner

This commit is contained in:
Luca Deri 2021-08-17 22:26:42 +02:00
parent e68350c6d1
commit eb4004024c
4 changed files with 7 additions and 4 deletions

View file

@ -73,6 +73,8 @@ function format_utils.secondsToTime(seconds)
msg = msg .. string.format("%02d:", truncate(minutes))
msg = msg .. string.format("%02d", truncate(sec));
if(seconds < 60) then msg = msg .. " sec" end
return msg
end