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