summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/MultiCrypter.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 19:39:08 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 19:39:08 +0200
commit34abcd53a83582215d13056b1f23c61bc7dbf3a7 (patch)
tree8a62481a0d2af00e85ef7d72097e763ca6de8ed4 /module/plugins/internal/MultiCrypter.py
parentUpdate internals (diff)
downloadpyload-34abcd53a83582215d13056b1f23c61bc7dbf3a7.tar.xz
Spare code cosmetics
Diffstat (limited to 'module/plugins/internal/MultiCrypter.py')
-rw-r--r--module/plugins/internal/MultiCrypter.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/module/plugins/internal/MultiCrypter.py b/module/plugins/internal/MultiCrypter.py
index 900f72589..d873da69d 100644
--- a/module/plugins/internal/MultiCrypter.py
+++ b/module/plugins/internal/MultiCrypter.py
@@ -25,7 +25,5 @@ class MultiCrypter(SimpleCrypter):
def _log(self, level, plugintype, pluginname, messages):
- return super(MultiCrypter, self)._log(level,
- plugintype,
- pluginname,
- (self.PLUGIN_NAME,) + messages)
+ messages = (self.PLUGIN_NAME,) + messages
+ return self.plugin._log(level, plugintype, pluginname, messages)