X-Git-Url: https://git.openstreetmap.org/osqa.git/blobdiff_plain/c88b6d62b9b66b7ba80ff9644f87594641f00ed7..6f5e5261beb713f5ebb0cbf346889562247a2317:/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)