diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-19 16:26:37 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-19 16:26:37 +0200 |
commit | b44f560c3a53c073a1290e3403ff76ebbe35e91b (patch) | |
tree | 595a55d2acd0670a313c58f0263dd3c15050e80a /download_thread.py | |
parent | rapidshare waits (diff) | |
download | pyload-b44f560c3a53c073a1290e3403ff76ebbe35e91b.tar.xz |
RapidshareCom läuft jetzt wieder.
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 |