From bfccbf058782ee4242a6f685ffc3411b2b0e6aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksi=20Ha=CC=88kli?= Date: Sun, 19 May 2019 21:23:24 +0300 Subject: [PATCH] Fix typo in docs --- docs/6_integration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/6_integration.rst b/docs/6_integration.rst index be15f4f..c1f11e4 100644 --- a/docs/6_integration.rst +++ b/docs/6_integration.rst @@ -216,7 +216,7 @@ validator classes to function correctly. u = authenticate(request=request, username=username, password=password) if u is not None and u.is_active: - request.u = user + request.user = u return True return False