summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Extractor.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r--module/plugins/internal/Extractor.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py
index cf9a1f6e3..cbfae5a4d 100644
--- a/module/plugins/internal/Extractor.py
+++ b/module/plugins/internal/Extractor.py
@@ -22,7 +22,7 @@ class PasswordError(Exception):
class Extractor(Plugin):
__name__ = "Extractor"
__type__ = "extractor"
- __version__ = "0.27"
+ __version__ = "0.28"
__status__ = "testing"
__description__ = """Base extractor plugin"""
@@ -113,8 +113,8 @@ class Extractor(Plugin):
pass
- def _log(self, level, args):
- return self.plugin._log(level, (self.__name__,) + args)
+ def _log(self, level, plugintype, pluginname, messages):
+ return self.plugin._log(level, plugintype, pluginname, (self.__name__,) + messages)
def check(self):