diff options
author | 2015-07-31 05:48:44 +0200 | |
---|---|---|
committer | 2015-07-31 05:48:44 +0200 | |
commit | dc47212c8e801d380e4db4bd1bec0bf183de9de1 (patch) | |
tree | 3d8a859e0028def05da2f1399199a5463f123159 /module/plugins/crypter/FilecryptCc.py | |
parent | Fix https://github.com/pyload/pyload/issues/1602 (2) (diff) | |
download | pyload-dc47212c8e801d380e4db4bd1bec0bf183de9de1.tar.xz |
[Captcha] Fix _decrypt method
Diffstat (limited to 'module/plugins/crypter/FilecryptCc.py')
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index 62b6c9ee2..9f4ad69aa 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -93,8 +93,7 @@ class FilecryptCc(Crypter): self.log_debug("Captcha-URL: %s" % m.group(1)) captcha_code = self.captcha.decrypt(urlparse.urljoin(self.base_url, m.group(1)), - input_type="gif", - ocr=False) + input_type="gif") self.site_with_links = self.load(self.pyfile.url, post={'recaptcha_response_field': captcha_code}) |