summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks
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/hooks
parentNew Captcha skeleton (diff)
downloadpyload-c2091ebec0ce394ec847f82db9bbaddc150d5fca.tar.xz
[Extractor] is_usable -> find
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r--module/plugins/hooks/ExtractArchive.py4
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')