summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hook/CaptchaBrotherhood.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-05 12:19:40 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-05 12:19:40 +0200
commit161c25993fa0c34ad3a40416ca6b9580aef4b36d (patch)
treef8317c4993dcff21f1af92c0c009c1c7bad76db5 /pyload/plugins/hook/CaptchaBrotherhood.py
parentRemove old Ev0InFetcher hook (diff)
downloadpyload-161c25993fa0c34ad3a40416ca6b9580aef4b36d.tar.xz
Fix refs on hook plugins + add missing __init__ files
Diffstat (limited to 'pyload/plugins/hook/CaptchaBrotherhood.py')
-rw-r--r--pyload/plugins/hook/CaptchaBrotherhood.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyload/plugins/hook/CaptchaBrotherhood.py b/pyload/plugins/hook/CaptchaBrotherhood.py
index a2c9086c8..8f6f8d68b 100644
--- a/pyload/plugins/hook/CaptchaBrotherhood.py
+++ b/pyload/plugins/hook/CaptchaBrotherhood.py
@@ -11,7 +11,7 @@ from time import sleep
from urllib import urlencode
from pyload.network.RequestFactory import getURL, getRequest
-from pyload.plugins.base.Addon import Addon
+from pyload.plugins.base.Hook import Hook
class CaptchaBrotherhoodException(Exception):
@@ -29,9 +29,9 @@ class CaptchaBrotherhoodException(Exception):
return "<CaptchaBrotherhoodException %s>" % self.err
-class CaptchaBrotherhood(Addon):
+class CaptchaBrotherhood(Hook):
__name__ = "CaptchaBrotherhood"
- __type__ = "addon"
+ __type__ = "hook"
__version__ = "0.05"
__config__ = [("activated", "bool", "Activated", False),