diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-21 22:55:54 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-21 22:55:54 +0200 |
commit | c2091ebec0ce394ec847f82db9bbaddc150d5fca (patch) | |
tree | 04e2515544d3d47242c991fe540954c0d0080164 /module/plugins/internal/Extractor.py | |
parent | New Captcha skeleton (diff) | |
download | pyload-c2091ebec0ce394ec847f82db9bbaddc150d5fca.tar.xz |
[Extractor] is_usable -> find
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 6 |
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 |