mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-14 02:57:18 +00:00
Fix webservice authentication bug caused by pylint streak
This commit is contained in:
parent
1738b541e8
commit
b5156d437b
@ -27,12 +27,10 @@ class UserOps:
|
|||||||
User.username == self.username
|
User.username == self.username
|
||||||
).first()
|
).first()
|
||||||
|
|
||||||
passw_is_correct = PasswordHasher.verify(
|
if not user or not PasswordHasher.verify(
|
||||||
self.password,
|
self.password,
|
||||||
user.passwordhash
|
user.passwordhash
|
||||||
)
|
):
|
||||||
|
|
||||||
if not user or not passw_is_correct:
|
|
||||||
self.log(f'Invalid credentials for user "{self.username}"!')
|
self.log(f'Invalid credentials for user "{self.username}"!')
|
||||||
raise InvalidCredentialsError
|
raise InvalidCredentialsError
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user