From ce5052fea2c56d690a49b516b72950c2e846d561 Mon Sep 17 00:00:00 2001 From: Andrew Buss Date: Fri, 1 May 2015 15:01:20 -0700 Subject: [PATCH] fixed '''intentional''' bug lolol --- flashcards/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flashcards/api.py b/flashcards/api.py index 0dd092d..f7b3a04 100644 --- a/flashcards/api.py +++ b/flashcards/api.py @@ -84,7 +84,7 @@ class UserLogin(APIView): password = request.data['password'] user = authenticate(email=email, password=password) - if user is not None: + if user is None: raise ValidationError('Invalid email or password') if not user.is_active: raise ValidationError('Account is disabled') -- 1.9.1