Open shlomibs opened 8 years ago
In _default_auth_request_handler() function, empty passwords are filtered out by the criterion = [username, password, len(data) == 2] list. This can be easily solved by changing the password criteria to password is not None
criterion = [username, password, len(data) == 2]
password
password is not None
In _default_auth_request_handler() function, empty passwords are filtered out by the
criterion = [username, password, len(data) == 2]
list. This can be easily solved by changing thepassword
criteria topassword is not None