mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-08-01 15:07:49 +00:00
Merge pull request #4148 from MilhouseVH/le10_pkgbuilder-neg-timeout
scripts/pkgbuilder.py: avoid returning negative timeout which is fatal
This commit is contained in:
commit
8aa0b504dd
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user