diff options
author | Jeix <devnull@localhost> | 2010-10-30 22:45:19 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-10-30 22:45:19 +0200 |
commit | a8e03d722e08f713f1bd78a8c086a42db40f380c (patch) | |
tree | e1cf04dbf370c33e2f0834275136c509b5a31286 /module/PluginThread.py | |
parent | closed #168 (diff) | |
download | pyload-a8e03d722e08f713f1bd78a8c086a42db40f380c.tar.xz |
closed #176 thanks for bug report
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r-- | module/PluginThread.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py index d4a0ed667..20cb10a5b 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -331,6 +331,13 @@ class DecrypterThread(PluginThread): self.active.error = msg return + + except Abort: + + self.m.log.info(_("Download aborted: %s") % pyfile.name) + pyfile.setStatus("aborted") + + return except Retry: |