summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Extractor.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-29 08:21:04 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-29 08:21:04 +0200
commit5a2781c923ecd13f3e671366fa6fa311d92d8547 (patch)
treef65fe11c0ea7e2122bb91ef7efd45ab71320353b /module/plugins/internal/Extractor.py
parentFix https://github.com/pyload/pyload/issues/1587 (diff)
downloadpyload-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.py9
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):