Commit 127725c5 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #15322 -- Removed a redundant check in admin logins. Thanks to melinath for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15569 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 670f4d96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ class AdminAuthenticationForm(AuthenticationForm):
        if username and password:
            self.user_cache = authenticate(username=username, password=password)
            if self.user_cache is None:
                if username is not None and u'@' in username:
                if u'@' in username:
                    # Mistakenly entered e-mail address instead of username? Look it up.
                    try:
                        user = User.objects.get(email=username)