summaryrefslogtreecommitdiffstats
path: root/module/download_thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/download_thread.py')
-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: