diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-16 15:39:27 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-16 15:39:27 +0200 |
commit | 06b0785037a95815be06f5cfcfc64f6120e14956 (patch) | |
tree | f7be722424416dbff7dba6011edcebb4dd64f05a /module/PluginThread.py | |
parent | additional fix (diff) | |
download | pyload-06b0785037a95815be06f5cfcfc64f6120e14956.tar.xz |
small improvement
Diffstat (limited to 'module/PluginThread.py')
-rw-r--r-- | module/PluginThread.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/PluginThread.py b/module/PluginThread.py index 37176574e..03db68100 100644 --- a/module/PluginThread.py +++ b/module/PluginThread.py @@ -460,8 +460,7 @@ class HookThread(PluginThread): except TypeError, e: #dirty method to filter out exceptions if "unexpected keyword argument 'thread'" not in e.message: - print_exc() - raise e + raise del self.kwargs["thread"] self.f(*self.args, **self.kwargs) |