diff options
author | godofdream <soilfiction@gmail.com> | 2012-08-06 19:30:44 +0200 |
---|---|---|
committer | godofdream <soilfiction@gmail.com> | 2012-08-06 19:30:44 +0200 |
commit | 1d8fc8bc88f7990538e2dcaffd15e3c55c540fc6 (patch) | |
tree | bd2e77a755c0216d6db19f2bc19a66c90c1a4eda /module | |
parent | update Freakshare, IcyFiles, Zippyshare, C1neon, FshareVn-Ac, Filefactory-Ac (diff) | |
download | pyload-1d8fc8bc88f7990538e2dcaffd15e3c55c540fc6.tar.xz |
fast fix of error in BypassCaptcha
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/BypassCaptcha.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/hooks/BypassCaptcha.py b/module/plugins/hooks/BypassCaptcha.py index 892c5cca6..c68f8a66b 100644 --- a/module/plugins/hooks/BypassCaptcha.py +++ b/module/plugins/hooks/BypassCaptcha.py @@ -46,13 +46,13 @@ class BypassCaptchaException(Exception): class BypassCaptcha(Addon): __name__ = "BypassCaptcha" - __version__ = "0.01" + __version__ = "0.02" __description__ = """send captchas to bypasscaptcha.com""" __config__ = [("activated", "bool", "Activated", True), ("key", "str", "Key", ""), - ("force", "bool", "Force CT even if client is connected", False), - __author_name__ = ("RaNaN") - __author_mail__ = ("RaNaN@pyload.org") + ("force", "bool", "Force CT even if client is connected", False),] + __author_name__ = ("Godofdream") + __author_mail__ = ("soilfcition@gmail.com") SUBMIT_URL = "http://bypasscaptcha.com/upload.php" RESPOND_URL = "http://bypasscaptcha.com/check_value.php" @@ -164,4 +164,4 @@ class BypassCaptcha(Addon): return task.data["ticket"] = ticket - task.setResult(result)
\ No newline at end of file + task.setResult(result) |