diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-20 16:13:20 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-20 16:13:20 +0200 |
commit | ebf46ec14c4604c159801435d8c1231089ba760e (patch) | |
tree | 188f518a21f4b6e997c89f1aa4256fbe83961760 /module/plugins/internal/Extractor.py | |
parent | Boring code cosmetics (diff) | |
download | pyload-ebf46ec14c4604c159801435d8c1231089ba760e.tar.xz |
[Extractor] Fix https://github.com/pyload/pyload/issues/2060
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 95395dd1f..897fc2652 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -36,7 +36,7 @@ class PasswordError(Exception): class Extractor(Plugin): __name__ = "Extractor" __type__ = "extractor" - __version__ = "0.38" + __version__ = "0.39" __status__ = "testing" __description__ = """Base extractor plugin""" @@ -57,6 +57,11 @@ class Extractor(Plugin): @classmethod + def ismultipart(cls, filename): + pass + + + @classmethod def find(cls): """ Check if system statisfy dependencies @@ -139,7 +144,7 @@ class Extractor(Plugin): def repair(self): - return False + pass def extract(self, password=None): |