diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 08:21:04 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 08:21:04 +0200 |
commit | 5a2781c923ecd13f3e671366fa6fa311d92d8547 (patch) | |
tree | f65fe11c0ea7e2122bb91ef7efd45ab71320353b /module/plugins/internal/Extractor.py | |
parent | Fix https://github.com/pyload/pyload/issues/1587 (diff) | |
download | pyload-5a2781c923ecd13f3e671366fa6fa311d92d8547.tar.xz |
Fix https://github.com/pyload/pyload/issues/1586
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index cbfae5a4d..907113a7e 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.28" + __version__ = "0.29" __status__ = "testing" __description__ = """Base extractor plugin""" @@ -33,7 +33,7 @@ class Extractor(Plugin): EXTENSIONS = [] REPAIR = False - VERSION = "" + VERSION = None @classmethod @@ -114,7 +114,10 @@ class Extractor(Plugin): def _log(self, level, plugintype, pluginname, messages): - return self.plugin._log(level, plugintype, pluginname, (self.__name__,) + messages) + return self.plugin._log(level, + plugintype, + "%s: %s" % (self.plugin.__name__, self.__name__), + messages) def check(self): |