diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-26 13:24:55 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-26 13:24:55 +0200 |
commit | 1de8f589216259f42ead0dddbc2954fae8e5e528 (patch) | |
tree | 8c4ed7ba0c327730f794536ee7d7ab62b641255e /module/download_thread.py | |
parent | improved plugins (diff) | |
download | pyload-1de8f589216259f42ead0dddbc2954fae8e5e528.tar.xz |
logic for container plugins implemented, basic plugin now downloads files, RSDF plugin added
Diffstat (limited to 'module/download_thread.py')
-rw-r--r-- | module/download_thread.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/download_thread.py b/module/download_thread.py index f103b2271..6eb90138f 100644 --- a/module/download_thread.py +++ b/module/download_thread.py @@ -102,7 +102,6 @@ class Download_Thread(threading.Thread): if not status.exists: raise "FileDontExists" #i know its deprecated, who cares^^ - if status.want_reconnect: print "handle reconnect" @@ -115,7 +114,7 @@ class Download_Thread(threading.Thread): status.type = "downloading" print status.url , status.filename - pyfile.plugin.req.download(status.url, pyfile.download_folder + "/" + status.filename) + pyfile.plugin.proceed(status.url, pyfile.download_folder + "/" + status.filename) status.type = "finished" except: status.type = "failed" |