summaryrefslogtreecommitdiffstats
path: root/module/thread_list.py
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-08-09 04:48:35 +0200
committerGravatar spoob <spoob@gmx.de> 2009-08-09 04:48:35 +0200
commit69ec3ccdee225f1b8e00542b1dee737a51bdc18b (patch)
treec1cc43401eb481ec5fed5ddc228a7f7e1f8d59da /module/thread_list.py
parentpyloadCli local switch fix (diff)
downloadpyload-69ec3ccdee225f1b8e00542b1dee737a51bdc18b.tar.xz
fixed megaupload bug
Diffstat (limited to 'module/thread_list.py')
-rw-r--r--module/thread_list.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/module/thread_list.py b/module/thread_list.py
index cf3df9f94..c578ac752 100644
--- a/module/thread_list.py
+++ b/module/thread_list.py
@@ -63,7 +63,6 @@ class Thread_List(object):
if not self.parent.is_dltime() or self.pause or self.reconnecting or not self.list.files: #conditions when threads dont download
return None
-
self.init_reconnect()
self.lock.acquire()
@@ -105,7 +104,7 @@ class Thread_List(object):
self.list.files.insert(0, pyfile)
elif pyfile.status.type == "failed":
- self.parent.logger.warning("Download failed: " + pyfile.url+" | "+ pyfile.status.error)
+ self.parent.logger.warning("Download failed: " + pyfile.url+ " | " + pyfile.status.error)
with open(self.parent.config['failed_file'], 'a') as f:
f.write(pyfile.url + "\n")
self.list.remove(pyfile)