summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-05-27 15:23:37 +0200
committerGravatar spoob <spoob@gmx.de> 2009-05-27 15:23:37 +0200
commit2c6b8f2e5f43645d7d588ffd33595ba3ccb0acb6 (patch)
treed5db4a1aa6b09631729f88708a4a9bfd33cc4987 /module
parentlittle fixes (diff)
downloadpyload-2c6b8f2e5f43645d7d588ffd33595ba3ccb0acb6.tar.xz
fixed log bug
Diffstat (limited to 'module')
-rw-r--r--module/download_thread.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/module/download_thread.py b/module/download_thread.py
index 8e90fb51f..9147af923 100644
--- a/module/download_thread.py
+++ b/module/download_thread.py
@@ -22,7 +22,6 @@ import threading
from time import time, sleep
from copy import copy
-
class Status(object):
""" Saves all status information
"""
@@ -83,7 +82,7 @@ class Download_Thread(threading.Thread):
self.loadedPyFile = self.parent.get_job()
if self.loadedPyFile:
try:
- self.download(self.loadedPyFile)
+ self.download(self.loadedPyFile)
except Exception, e:
print "Error:", e #catch up all error here
finally: