summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FilerNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/FilerNet.py')
-rw-r--r--module/plugins/hoster/FilerNet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FilerNet.py b/module/plugins/hoster/FilerNet.py
index 7c0b7bb5d..a1ad5d8c9 100644
--- a/module/plugins/hoster/FilerNet.py
+++ b/module/plugins/hoster/FilerNet.py
@@ -48,8 +48,8 @@ class FilerNet(SimpleHoster):
if 'hash' not in inputs:
self.error(_("Unable to detect hash"))
- recaptcha = ReCaptcha(pyfile)
- response, challenge = recaptcha.challenge()
+ self.captcha = ReCaptcha(pyfile)
+ response, challenge = self.captcha.challenge()
header = self.load(pyfile.url,
post={'recaptcha_challenge_field': challenge,