mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-01-24 00:04:16 +03:00
Using user.get_username() instead of user.username.
This solves an error when using a auth model that does not have a username field.
This commit is contained in:
parent
840fe7b05c
commit
1ab782a430
|
@ -344,7 +344,7 @@ class OAuth2Authentication(BaseAuthentication):
|
||||||
user = token.user
|
user = token.user
|
||||||
|
|
||||||
if not user.is_active:
|
if not user.is_active:
|
||||||
msg = 'User inactive or deleted: %s' % user.username
|
msg = 'User inactive or deleted: %s' % user.get_username()
|
||||||
raise exceptions.AuthenticationFailed(msg)
|
raise exceptions.AuthenticationFailed(msg)
|
||||||
|
|
||||||
return (user, token)
|
return (user, token)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user