diff options
author | spoob <spoob@gmx.de> | 2009-05-27 15:23:37 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-05-27 15:23:37 +0200 |
commit | 2c6b8f2e5f43645d7d588ffd33595ba3ccb0acb6 (patch) | |
tree | d5db4a1aa6b09631729f88708a4a9bfd33cc4987 /module | |
parent | little fixes (diff) | |
download | pyload-2c6b8f2e5f43645d7d588ffd33595ba3ccb0acb6.tar.xz |
fixed log bug
Diffstat (limited to 'module')
-rw-r--r-- | module/download_thread.py | 3 |
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: |