summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/BypassCaptcha.py
diff options
context:
space:
mode:
authorGravatar Nitzo <nitzo2001@yahoo.com> 2016-01-30 03:04:52 +0100
committerGravatar Nitzo <nitzo2001@yahoo.com> 2016-01-30 03:04:52 +0100
commitc6ba3ae11f9296108a297fc78ae68f3c8461a3da (patch)
treed2cec1679a3fad86c114867037ba29e5fd97d0c1 /module/plugins/hooks/BypassCaptcha.py
parent[ClickNLoad] Fix false reporting of unclean shutdown on python 2.5 (diff)
downloadpyload-c6ba3ae11f9296108a297fc78ae68f3c8461a3da.tar.xz
[misc] Move `threaded`, `Expose` form Addon to misc
Diffstat (limited to 'module/plugins/hooks/BypassCaptcha.py')
-rw-r--r--module/plugins/hooks/BypassCaptcha.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hooks/BypassCaptcha.py b/module/plugins/hooks/BypassCaptcha.py
index 700eb3b0a..8f9358632 100644
--- a/module/plugins/hooks/BypassCaptcha.py
+++ b/module/plugins/hooks/BypassCaptcha.py
@@ -4,7 +4,8 @@ import pycurl
from module.network.HTTPRequest import BadHeader
from module.network.RequestFactory import getRequest as get_request
-from module.plugins.internal.Addon import Addon, threaded
+from module.plugins.internal.Addon import Addon
+from module.plugins.internal.misc import threaded
class BypassCaptchaException(Exception):
@@ -28,7 +29,7 @@ class BypassCaptchaException(Exception):
class BypassCaptcha(Addon):
__name__ = "BypassCaptcha"
__type__ = "hook"
- __version__ = "0.11"
+ __version__ = "0.12"
__status__ = "testing"
__config__ = [("activated" , "bool" , "Activated" , False),