mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Catch all LDAP exceptions
This commit is contained in:
parent
51853a22bc
commit
f39d90caa9
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def has_right(owner, user, password):
|
|||
log.LOGGER.debug("User %s found" % user)
|
||||
try:
|
||||
CONNEXION.simple_bind_s(users[0][0], password or "")
|
||||
except ldap.INVALID_CREDENTIALS:
|
||||
except ldap.LDAPError:
|
||||
log.LOGGER.debug("Invalid credentials")
|
||||
else:
|
||||
log.LOGGER.debug("LDAP bind OK")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue