summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Extractor.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-21 22:55:54 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-21 22:55:54 +0200
commitc2091ebec0ce394ec847f82db9bbaddc150d5fca (patch)
tree04e2515544d3d47242c991fe540954c0d0080164 /module/plugins/internal/Extractor.py
parentNew Captcha skeleton (diff)
downloadpyload-c2091ebec0ce394ec847f82db9bbaddc150d5fca.tar.xz
[Extractor] is_usable -> find
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 e1fb2332d..3d2859f54 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.25"
+ __version__ = "0.26"
__status__ = "stable"
__description__ = """Base extractor plugin"""
@@ -48,12 +48,12 @@ class Extractor(Plugin):
@classmethod
- def is_usable(cls):
+ def find(cls):
"""
Check if system statisfy dependencies
:return: boolean
"""
- return None
+ pass
@classmethod