This commit is contained in:
Omid Raha 2017-04-18 15:59:05 +00:00 committed by GitHub
commit c64f7b794e

View File

@ -273,7 +273,7 @@ The following example will authenticate any incoming request as the user given b
except User.DoesNotExist:
raise exceptions.AuthenticationFailed('No such user')
return (user, None)
return user, None
---