diff options
author | 2015-07-21 22:55:54 +0200 | |
---|---|---|
committer | 2015-07-21 22:55:54 +0200 | |
commit | c2091ebec0ce394ec847f82db9bbaddc150d5fca (patch) | |
tree | 04e2515544d3d47242c991fe540954c0d0080164 /module/plugins/hooks | |
parent | New Captcha skeleton (diff) | |
download | pyload-c2091ebec0ce394ec847f82db9bbaddc150d5fca.tar.xz |
[Extractor] is_usable -> find
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index 8a52fed55..6f353f538 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -112,7 +112,7 @@ class ArchiveQueue(object): class ExtractArchive(Addon): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.46" + __version__ = "1.47" __status__ = "stable" __config__ = [("activated" , "bool" , "Activated" , True ), @@ -162,7 +162,7 @@ class ExtractArchive(Addon): try: module = self.pyload.pluginManager.loadModule("internal", p) klass = getattr(module, p) - if klass.is_usable(): + if klass.find(): self.extractors.append(klass) if klass.REPAIR: self.repair = self.get_config('repair') |