X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/1a949f7c97dc2f34c135f5cdf088df2927d3d652..6b394aaf645c46996908bb1d11b0755dc8ca4067:/forum_modules/recaptcha/formfield.py diff --git a/forum_modules/recaptcha/formfield.py b/forum_modules/recaptcha/formfield.py index 88b9497..26ece87 100644 --- a/forum_modules/recaptcha/formfield.py +++ b/forum_modules/recaptcha/formfield.py @@ -27,6 +27,7 @@ class ReCaptchaWidget(forms.Widget): return mark_safe(force_unicode(captcha.displayhtml(settings.RECAPTCHA_PUB_KEY))) def value_from_datadict(self, data, files, name): - return (data.get('recaptcha_challenge_field', None), data.get('recaptcha_response_field', None)) + + return data.get('recaptcha_challenge_field', None), data.get('recaptcha_response_field', None)