diff options
author | Jeix <devnull@localhost> | 2011-06-30 18:15:35 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2011-06-30 18:15:35 +0200 |
commit | e0a3cdbefd3218d5d0453dd401230c79f9bc8035 (patch) | |
tree | 1cfe7da0c0ee90c45ef4ec1cf6824e54ecdb7b2d /module/PluginThread.py | |
parent | little thrift fixes, some new methods stubs (diff) | |
download | pyload-e0a3cdbefd3218d5d0453dd401230c79f9bc8035.tar.xz |
fixed #336 megavideo
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r-- | module/PluginThread.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py index 5f311aa07..1cb1dd8ea 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -153,13 +153,13 @@ class DownloadThread(PluginThread): self.m.core.hookManager.downloadStarts(pyfile) pyfile.plugin.preprocessing(self) - except NotImplementedError: + # except NotImplementedError: - self.m.log.error(_("Plugin %s is missing a function.") % pyfile.pluginname) - pyfile.setStatus("failed") - pyfile.error = "Plugin does not work" - self.clean(pyfile) - continue + # self.m.log.error(_("Plugin %s is missing a function.") % pyfile.pluginname) + # pyfile.setStatus("failed") + # pyfile.error = "Plugin does not work" + # self.clean(pyfile) + # continue except Abort: try: |