#10017: auth.forms.PasswordResetForm.clean_email returns None ---------------------------------------+------------------------------------ Reporter: Zak Johnson <z...@nox.cx> | Owner: nobody Status: new | Milestone: Component: Authentication | Version: SVN Keywords: | Stage: Unreviewed Has_patch: 1 | ---------------------------------------+------------------------------------ Classes inheriting from `PasswordResetForm` will be unable to access `self.cleaned_data['email']` without a stub `clean_email()` to return a value:
{{{ def clean_email(self): super(MyPasswordResetForm, self).clean_email() return self.cleaned_data['email'] }}} -- Ticket URL: <http://code.djangoproject.com/ticket/10017> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---