# HG changeset patch # User Brian Neal # Date 1401221198 18000 # Node ID f416f5db3d9110dc6164bdca04abea15ae001b55 # Parent fa7377d90160eaec6caef1c1a5f45651c9b69922 Improve accounts registration question 7 error message. One potential user thought it was referring to the combo box above it on the form, not the checkboxes. diff -r fa7377d90160 -r f416f5db3d91 accounts/forms.py --- a/accounts/forms.py Mon May 26 19:34:49 2014 -0500 +++ b/accounts/forms.py Tue May 27 15:06:38 2014 -0500 @@ -172,7 +172,7 @@ answer = self.cleaned_data.get('question7') answer.sort() if answer != [u'2', u'4', u'5', u'7']: - self._validation_error("Sorry, try again", answer) + self._validation_error("Please double-check your checkboxes", answer) return answer def save(self):