From 7db31578643b43479009d88993224eb7a410fb6d Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Mon, 27 Jun 2016 14:01:39 +0200 Subject: [PATCH] Forgotten return --- cas_server/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cas_server/auth.py b/cas_server/auth.py index 7051828..f84fb11 100644 --- a/cas_server/auth.py +++ b/cas_server/auth.py @@ -90,7 +90,7 @@ class MysqlAuthUser(AuthUser): # pragma: no cover def test_password(self, password): """test `password` agains the user""" if self.user: - check_password( + return check_password( settings.CAS_SQL_PASSWORD_CHECK, password, self.user["password"],