diff options
| author | Tom Christie | 2014-09-11 09:20:01 +0100 |
|---|---|---|
| committer | Tom Christie | 2014-09-11 09:20:01 +0100 |
| commit | 293728579070d802342bd92fa164e8dc0f0a7990 (patch) | |
| tree | 40d89ef8dae6c9246c68239d8aa59dbe0f5abc41 /rest_framework | |
| parent | 1d4e0131c3daf0407a6f369ac6b70486b3dc78ee (diff) | |
| parent | 37d01f6088b1cf5673f66f4532dd51c73a0156f1 (diff) | |
| download | django-rest-framework-293728579070d802342bd92fa164e8dc0f0a7990.tar.bz2 | |
Merge pull request #1863 from jbinney/master
Fix grammar in login error message
Diffstat (limited to 'rest_framework')
| -rw-r--r-- | rest_framework/authtoken/serializers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/authtoken/serializers.py b/rest_framework/authtoken/serializers.py index 99e99ae3..472e59ee 100644 --- a/rest_framework/authtoken/serializers.py +++ b/rest_framework/authtoken/serializers.py @@ -22,7 +22,7 @@ class AuthTokenSerializer(serializers.Serializer): attrs['user'] = user return attrs 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"') |
