diff options
Diffstat (limited to 'module/download_thread.py')
-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" |