aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authtoken/serializers.py
diff options
context:
space:
mode:
authorTom Christie2014-09-19 14:05:50 +0100
committerTom Christie2014-09-19 14:05:50 +0100
commit88008c0a687219e3104d548196915b1068536d74 (patch)
tree31c21a93d3e11e8ba66e83c96f8947783e8d676e /rest_framework/authtoken/serializers.py
parent6d73b5969a9d415a6d43175e77bc10ba76151e97 (diff)
parent1e9ea377e3f0521ec5d9c21527cfad3c7626baaa (diff)
downloaddjango-rest-framework-88008c0a687219e3104d548196915b1068536d74.tar.bz2
Merge branch 'master' into version-3.0
Diffstat (limited to 'rest_framework/authtoken/serializers.py')
-rw-r--r--rest_framework/authtoken/serializers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/authtoken/serializers.py b/rest_framework/authtoken/serializers.py
index edeae857..c2c456de 100644
--- a/rest_framework/authtoken/serializers.py
+++ b/rest_framework/authtoken/serializers.py
@@ -20,7 +20,7 @@ class AuthTokenSerializer(serializers.Serializer):
msg = _('User account is disabled.')
raise serializers.ValidationError(msg)
else:
- msg = _('Unable to login with provided credentials.')
+ msg = _('Unable to log in with provided credentials.')
raise serializers.ValidationError(msg)
else:
msg = _('Must include "username" and "password"')