diff options
author | Nippey <matthias@dornuweb.de> | 2016-01-08 08:21:15 +0100 |
---|---|---|
committer | Nippey <matthias@dornuweb.de> | 2016-01-08 08:21:15 +0100 |
commit | e595d823e303a6db0a9c7e24f6a9d1644615009c (patch) | |
tree | 808e6f2f5854e0a4b3919e757f38348b6480f01d /module | |
parent | [ExternalScripts] fix #2264 (diff) | |
download | pyload-e595d823e303a6db0a9c7e24f6a9d1644615009c.tar.xz |
Bump version of CaptchaService.py
The file contains a change, that doesn't make it down to us users ;)
pyLoad 0.4.9 Debug Report of ShareonlineBiz 0.65
```
TRACEBACK:
Traceback (most recent call last):
File "/volume1/web/pyload-git-stable/module/PluginThread.py", line 187, in run
pyfile.plugin.preprocessing(self)
File "/volume1/@optware/share/pyload_config/userplugins/internal/Base.py", line 288, in preprocessing
return self._process(*args, **kwargs)
File "/volume1/@optware/share/pyload_config/userplugins/internal/Hoster.py", line 118, in _process
self.process(self.pyfile)
File "/volume1/@optware/share/pyload_config/userplugins/internal/SimpleHoster.py", line 283, in process
self.handle_free(pyfile)
File "/volume1/@optware/share/pyload_config/userplugins/hoster/ShareonlineBiz.py", line 96, in handle_free
res = self.handle_captcha()
File "/volume1/@optware/share/pyload_config/userplugins/hoster/ShareonlineBiz.py", line 72, in handle_captcha
response, challenge = self.captcha.challenge(self.RECAPTCHA_KEY)
File "/volume1/@optware/share/pyload_config/userplugins/captcha/ReCaptcha.py", line 50, in challenge
version=2 if re.search(self.KEY_V2_PATTERN, data or self.retrieve_data()) else 1)
File "/volume1/@optware/share/pyload_config/userplugins/internal/CaptchaService.py", line 30, in retrieve_data
return self.plugin.data or self.plugin.last_html or ""
AttributeError: 'ReCaptcha' object has no attribute 'plugin'
```
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/CaptchaService.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/CaptchaService.py b/module/plugins/internal/CaptchaService.py index 6f08d4498..0201362fc 100644 --- a/module/plugins/internal/CaptchaService.py +++ b/module/plugins/internal/CaptchaService.py @@ -6,7 +6,7 @@ from module.plugins.internal.Captcha import Captcha class CaptchaService(Captcha): __name__ = "CaptchaService" __type__ = "captcha" - __version__ = "0.34" + __version__ = "0.35" __status__ = "stable" __description__ = """Base anti-captcha service plugin""" |