Forgotten return
This commit is contained in:
parent
90262b0b97
commit
7db3157864
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class MysqlAuthUser(AuthUser): # pragma: no cover
|
||||||
def test_password(self, password):
|
def test_password(self, password):
|
||||||
"""test `password` agains the user"""
|
"""test `password` agains the user"""
|
||||||
if self.user:
|
if self.user:
|
||||||
check_password(
|
return check_password(
|
||||||
settings.CAS_SQL_PASSWORD_CHECK,
|
settings.CAS_SQL_PASSWORD_CHECK,
|
||||||
password,
|
password,
|
||||||
self.user["password"],
|
self.user["password"],
|
||||||
|
|
Loading…
Reference in a new issue