diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-10 18:42:46 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-10 18:42:46 +0100 |
commit | 1fe795e8bfb9d9ed7181bfe075469a960f7bb0e4 (patch) | |
tree | e17b69106d61342ae09ae887beabdd805339593e /pyload/plugins/hook/DeathByCaptcha.py | |
parent | Fix previous merge (diff) | |
download | pyload-1fe795e8bfb9d9ed7181bfe075469a960f7bb0e4.tar.xz |
Revert plugin directory structure
Diffstat (limited to 'pyload/plugins/hook/DeathByCaptcha.py')
-rw-r--r-- | pyload/plugins/hook/DeathByCaptcha.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hook/DeathByCaptcha.py b/pyload/plugins/hook/DeathByCaptcha.py index c076bdcee..f2ccb383b 100644 --- a/pyload/plugins/hook/DeathByCaptcha.py +++ b/pyload/plugins/hook/DeathByCaptcha.py @@ -11,7 +11,7 @@ from time import sleep from pyload.utils import json_loads from pyload.network.HTTPRequest import BadHeader from pyload.network.RequestFactory import getRequest -from pyload.plugins.internal.Addon import Hook +from pyload.plugins.Addon import Addon class DeathByCaptchaException(Exception): @@ -48,7 +48,7 @@ class DeathByCaptchaException(Exception): return "<DeathByCaptchaException %s>" % self.err -class DeathByCaptcha(Hook): +class DeathByCaptcha(Addon): __name__ = "DeathByCaptcha" __type__ = "hook" __version__ = "0.04" |