diff options
Diffstat (limited to 'download_thread.py')
-rw-r--r-- | download_thread.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/download_thread.py b/download_thread.py index 2b6fafdab..672f15682 100644 --- a/download_thread.py +++ b/download_thread.py @@ -84,10 +84,13 @@ class Download_Thread(threading.Thread): if not status.exists: self.shutdown = True + return False if status.want_reconnect: print "handle reconnect" self.shutdown = True + return False + while (time() < status.waituntil): status.type = "waiting" sleep(1) #eventuell auf genaue zeit warten |