This commit is contained in:
ed 2024-09-16 01:07:50 +00:00
parent 1d004b6dbd
commit c0c0a1a83a
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (1, 15, 2)
VERSION = (1, 15, 3)
CODENAME = "fill the drives"
BUILD_DT = (2024, 9, 16)

View file

@ -3986,7 +3986,7 @@ class HttpCli(object):
erd = quotep(rd)
rds = rd.replace("/", " / ")
spd = humansize(sz * fdone / td, True) + "/s"
eta = s2hms((td / fdone) - td, True)
eta = s2hms((td / fdone) - td, True) if rem < 1 else "--"
idle = s2hms(now - poke, True)
ups.append((int(100 * fdone), spd, eta, idle, erd, rds, fn))
except Exception as ex:

View file

@ -288,7 +288,7 @@ class Up2k(object):
else:
mtpq = "(?)"
if up_en:
ups = [(0, 0, time.time(), "cannot show list (server too busy)")]
ups = [(1, 0, 0, time.time(), "cannot show list (server too busy)")]
ups.sort(reverse=True)