From c2091ebec0ce394ec847f82db9bbaddc150d5fca Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Tue, 21 Jul 2015 22:55:54 +0200 Subject: [Extractor] is_usable -> find --- module/plugins/hooks/ExtractArchive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/hooks/ExtractArchive.py') 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') -- cgit v1.2.3