diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 20:13:28 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-31 20:13:28 +0100 |
commit | b2904e3e704ece4e891f3d2bfbcc8af2d6d8c2e1 (patch) | |
tree | 29cdc1dfc53ca691e23aa68c348076b3cc78d4ab /module/plugins/internal/Extractor.py | |
parent | [ZeveraCom] Re-fix account expire recognition (diff) | |
download | pyload-b2904e3e704ece4e891f3d2bfbcc8af2d6d8c2e1.tar.xz |
[SevenZip] Better check method + fix list method
Diffstat (limited to 'module/plugins/internal/Extractor.py')
-rw-r--r-- | module/plugins/internal/Extractor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 3ea634ec8..4c38760f2 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -19,7 +19,7 @@ class PasswordError(Exception): class Extractor: __name__ = "Extractor" - __version__ = "0.16" + __version__ = "0.17" __description__ = """Base extractor plugin""" __license__ = "GPLv3" @@ -37,7 +37,7 @@ class Extractor: @classmethod - def checkDeps(cls): + def isUsable(cls): """ Check if system statisfy dependencies :return: boolean """ |