summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/addon/BypassCaptcha.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 21:20:20 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 21:20:20 +0200
commitf6e5359110f4bd5facc04a98f94acbc41b6e5228 (patch)
tree1f625724951c1b3a848f96c65708f437807f7190 /pyload/plugins/addon/BypassCaptcha.py
parent[UpdateManager] Support new plugins structure (diff)
downloadpyload-f6e5359110f4bd5facc04a98f94acbc41b6e5228.tar.xz
Update pyload to the new plugins structure
Diffstat (limited to 'pyload/plugins/addon/BypassCaptcha.py')
-rw-r--r--pyload/plugins/addon/BypassCaptcha.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugins/addon/BypassCaptcha.py b/pyload/plugins/addon/BypassCaptcha.py
index fdd1e567c..51b363eed 100644
--- a/pyload/plugins/addon/BypassCaptcha.py
+++ b/pyload/plugins/addon/BypassCaptcha.py
@@ -5,7 +5,7 @@ from thread import start_new_thread
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 BypassCaptchaException(Exception):
@@ -23,9 +23,9 @@ class BypassCaptchaException(Exception):
return "<BypassCaptchaException %s>" % self.err
-class BypassCaptcha(Hook):
+class BypassCaptcha(Addon):
__name__ = "BypassCaptcha"
- __type__ = "hook"
+ __type__ = "addon"
__version__ = "0.04"
__config__ = [("activated", "bool", "Activated", False),