diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-09 18:16:37 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-09 18:16:37 +0100 |
commit | 04f3273f59d9bb2259d43422ba10ed5e682b8926 (patch) | |
tree | 631f4c740c15ce3297239a46ad18058d79553d76 /module/plugins/internal | |
parent | Spare code cosmetics (diff) | |
download | pyload-04f3273f59d9bb2259d43422ba10ed5e682b8926.tar.xz |
[CaptchaService] Fix https://github.com/pyload/pyload/issues/1162
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/CaptchaService.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/CaptchaService.py b/module/plugins/internal/CaptchaService.py index 664d10fb7..8f6a5086d 100644 --- a/module/plugins/internal/CaptchaService.py +++ b/module/plugins/internal/CaptchaService.py @@ -12,7 +12,7 @@ from module.common.json_layer import json_loads class CaptchaService(object): __name__ = "CaptchaService" - __version__ = "0.23" + __version__ = "0.24" __description__ = """Base captcha service plugin""" __license__ = "GPLv3" @@ -311,7 +311,7 @@ class AdsCaptcha(CaptchaService): class SolveMedia(CaptchaService): __name__ = "SolveMedia" - __version__ = "0.10" + __version__ = "0.11" __description__ = """SolveMedia captcha service plugin""" __license__ = "GPLv3" @@ -395,7 +395,7 @@ class SolveMedia(CaptchaService): 's' : "standard", 'magic' : magic, 'adcopy_challenge' : challenge, - 'ref' : ref) + 'ref' : ref}) try: html = self.plugin.req.load(re.search(r'URL=(.+?)">', html).group(1)) gibberish = re.search(r'id=gibberish>(.+?)</textarea>', html).group(1) |