Commit 1ab782a4 by dpanesso

Using user.get_username() instead of user.username.

This solves an error when using a auth model that does not have a username field.
parent 840fe7b0
...@@ -344,7 +344,7 @@ class OAuth2Authentication(BaseAuthentication): ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment