diff options
author | spoob <spoob@gmx.de> | 2009-05-26 15:01:02 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-05-26 15:01:02 +0200 |
commit | 4339a5e844b8593d5a4df2a84097e28878b19030 (patch) | |
tree | 03e787a7ed0c8cfe451a7b659a509103515d550d /module | |
parent | logic for container plugins implemented, basic plugin now downloads files, RS... (diff) | |
download | pyload-4339a5e844b8593d5a4df2a84097e28878b19030.tar.xz |
better youtube video id parsing, nicer testoutput
Diffstat (limited to 'module')
-rw-r--r-- | module/download_thread.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/download_thread.py b/module/download_thread.py index 6eb90138f..502d42ddc 100644 --- a/module/download_thread.py +++ b/module/download_thread.py @@ -111,10 +111,10 @@ class Download_Thread(threading.Thread): sleep(1) #eventuell auf genaue zeit warten try: - status.type = "downloading" - print status.url , status.filename + status.type = "downloading" + print "download", status.filename - pyfile.plugin.proceed(status.url, pyfile.download_folder + "/" + status.filename) + pyfile.plugin.proceed(status.url, pyfile.download_folder + "/" + status.filename) status.type = "finished" except: status.type = "failed" |