diff options
-rw-r--r-- | askbot/deps/django_authopenid/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deps/django_authopenid/forms.py b/askbot/deps/django_authopenid/forms.py index 8e6ce528..db2afcd8 100644 --- a/askbot/deps/django_authopenid/forms.py +++ b/askbot/deps/django_authopenid/forms.py @@ -392,7 +392,7 @@ class AccountRecoveryForm(forms.Form): if 'email' in self.cleaned_data: email = self.cleaned_data['email'] try: - user = User.objects.get(email=email) + user = User.objects.get(email__iexact=email) self.cleaned_data['user'] = user except User.DoesNotExist: del self.cleaned_data['email'] |