diff options
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r-- | module/PluginThread.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py index 391844a62..c91ca1121 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -181,7 +181,11 @@ class DownloadThread(PluginThread): continue except Abort: - self.m.log.info(_("Download aborted: %s") % pyfile.name) + try: + self.m.log.info(_("Download aborted: %s") % pyfile.name) + except : + pass + pyfile.setStatus("aborted") self.clean(pyfile) |