diff options
Diffstat (limited to 'pyload/plugins/addon/ExpertDecoders.py')
-rw-r--r-- | pyload/plugins/addon/ExpertDecoders.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugins/addon/ExpertDecoders.py b/pyload/plugins/addon/ExpertDecoders.py index 3f0f64f1e..87979a8a8 100644 --- a/pyload/plugins/addon/ExpertDecoders.py +++ b/pyload/plugins/addon/ExpertDecoders.py @@ -9,12 +9,12 @@ from uuid import uuid4 from pyload.network.HTTPRequest import BadHeader from pyload.network.RequestFactory import getURL, getRequest -from pyload.plugins.base.Hook import Hook +from pyload.plugins.base.Addon import Addon -class ExpertDecoders(Hook): +class ExpertDecoders(Addon): __name__ = "ExpertDecoders" - __type__ = "hook" + __type__ = "addon" __version__ = "0.01" __config__ = [("activated", "bool", "Activated", False), |