px_uploader: Small fix to properly display timeouts

This commit is contained in:
Johan Jansen 2015-01-12 12:25:30 +01:00
parent 0954ee7471
commit 11469ad9b5
1 changed files with 3 additions and 2 deletions

View File

@ -287,11 +287,12 @@ class uploader(object):
#Draw progress bar (erase usually takes about 9 seconds to complete)
estimatedTimeRemaining = deadline-time.time()
if estimatedTimeRemaining > 0:
if estimatedTimeRemaining >= 9.0:
self.__drawProgressBar(20.0-estimatedTimeRemaining, 9.0)
else:
self.__drawProgressBar(10.0, 10.0)
sys.stdout.write(" (timeout: %d seconds) " % int(time.time()-deadline) )
sys.stdout.write(" (timeout: %d seconds) " % int(deadline-time.time()) )
sys.stdout.flush()
if self.__trySync():
self.__drawProgressBar(10.0, 10.0)