diff options
author | 2014-12-10 18:42:46 +0100 | |
---|---|---|
committer | 2014-12-10 18:42:46 +0100 | |
commit | 1fe795e8bfb9d9ed7181bfe075469a960f7bb0e4 (patch) | |
tree | e17b69106d61342ae09ae887beabdd805339593e /pyload/plugins/hook/CaptchaBrotherhood.py | |
parent | Fix previous merge (diff) | |
download | pyload-1fe795e8bfb9d9ed7181bfe075469a960f7bb0e4.tar.xz |
Revert plugin directory structure
Diffstat (limited to 'pyload/plugins/hook/CaptchaBrotherhood.py')
-rw-r--r-- | pyload/plugins/hook/CaptchaBrotherhood.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hook/CaptchaBrotherhood.py b/pyload/plugins/hook/CaptchaBrotherhood.py index 355081630..333c0be85 100644 --- a/pyload/plugins/hook/CaptchaBrotherhood.py +++ b/pyload/plugins/hook/CaptchaBrotherhood.py @@ -14,7 +14,7 @@ from time import sleep from urllib import urlencode from pyload.network.RequestFactory import getURL, getRequest -from pyload.plugins.internal.Addon import Hook +from pyload.plugins.Addon import Addon class CaptchaBrotherhoodException(Exception): @@ -35,7 +35,7 @@ class CaptchaBrotherhoodException(Exception): return "<CaptchaBrotherhoodException %s>" % self.err -class CaptchaBrotherhood(Hook): +class CaptchaBrotherhood(Addon): __name__ = "CaptchaBrotherhood" __type__ = "hook" __version__ = "0.06" |