summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/addon/ExtractArchive.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/addon/ExtractArchive.py')
-rw-r--r--pyload/plugins/addon/ExtractArchive.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugins/addon/ExtractArchive.py b/pyload/plugins/addon/ExtractArchive.py
index 92db9ce04..20693c83d 100644
--- a/pyload/plugins/addon/ExtractArchive.py
+++ b/pyload/plugins/addon/ExtractArchive.py
@@ -47,14 +47,14 @@ if os.name != "nt":
from os import chown
from pwd import getpwnam
-from pyload.plugins.base.Hook import Hook, threaded, Expose
+from pyload.plugins.base.Addon import Addon, threaded, Expose
from pyload.plugins.internal.AbstractExtractor import ArchiveError, CRCError, WrongPassword
from pyload.utils import safe_join, fs_encode
-class ExtractArchive(Hook):
+class ExtractArchive(Addon):
__name__ = "ExtractArchive"
- __type__ = "hook"
+ __type__ = "addon"
__version__ = "0.17"
__config__ = [("activated", "bool", "Activated", True),