summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks
diff options
context:
space:
mode:
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')