diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-01-30 03:04:52 +0100 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-01-30 03:04:52 +0100 |
commit | c6ba3ae11f9296108a297fc78ae68f3c8461a3da (patch) | |
tree | d2cec1679a3fad86c114867037ba29e5fd97d0c1 /module/plugins/hooks/Captcha9Kw.py | |
parent | [ClickNLoad] Fix false reporting of unclean shutdown on python 2.5 (diff) | |
download | pyload-c6ba3ae11f9296108a297fc78ae68f3c8461a3da.tar.xz |
[misc] Move `threaded`, `Expose` form Addon to misc
Diffstat (limited to 'module/plugins/hooks/Captcha9Kw.py')
-rw-r--r-- | module/plugins/hooks/Captcha9Kw.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hooks/Captcha9Kw.py b/module/plugins/hooks/Captcha9Kw.py index 438a29165..b928c5992 100644 --- a/module/plugins/hooks/Captcha9Kw.py +++ b/module/plugins/hooks/Captcha9Kw.py @@ -7,13 +7,14 @@ import re import time from module.network.HTTPRequest import BadHeader -from module.plugins.internal.Addon import Addon, threaded +from module.plugins.internal.Addon import Addon +from module.plugins.internal.misc import threaded class Captcha9Kw(Addon): __name__ = "Captcha9Kw" __type__ = "hook" - __version__ = "0.33" + __version__ = "0.34" __status__ = "testing" __config__ = [("activated" , "bool" , "Activated" , False ), |