summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-04-08 20:50:38 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-04-08 20:50:38 -0600
commit73398939e958901cf006b066fa0fef1e620164dc (patch)
treebcb062173c2829591078435047fc867972890b73
parent449596dbef219d5b75fa47ca1934d1d58ec5e45b (diff)
parenta3e1aace3a43a77b75ca989c8b0fe8d3cf0cfa20 (diff)
downloadaskbot-73398939e958901cf006b066fa0fef1e620164dc.tar.gz
askbot-73398939e958901cf006b066fa0fef1e620164dc.tar.bz2
askbot-73398939e958901cf006b066fa0fef1e620164dc.zip
Merge branch 'master' of github.com:ASKBOT/askbot-devel
-rw-r--r--askbot/deps/django_authopenid/forms.py2
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']