1
0

scripts/pkgbuilder.py: avoid returning negative timeout which is fatal

This commit is contained in:
MilhouseVH
2020-01-26 06:54:25 +00:00
parent d829752181
commit c567e7a9e8

@ -450,7 +450,7 @@ class Builder:
self.generator.activeJobCount(), ",".join(self.generator.activeJobNames())), \
file=self.loadstatsfile, flush=True)
return (self.nextstats - time.time())
return (self.nextstats - now)
# Output progress info, and links to any relevant logs
def displayJobStatus(self, job):