Fix #1: LDAPInvalidCredentialsResult reference

This commit is contained in:
Marco Huenseler 2017-08-04 17:45:29 +02:00
parent 32a4c7c9e3
commit d708583ed3

View File

@ -26,6 +26,7 @@ Authentication based on the ``ldap3`` module
""" """
import ldap3 import ldap3
import ldap3.core.exceptions
import ldap3.utils.dn import ldap3.utils.dn
from radicale.auth import BaseAuth from radicale.auth import BaseAuth
@ -84,7 +85,7 @@ class Auth(BaseAuth):
else: else:
self.logger.debug("LDAP bind failed") self.logger.debug("LDAP bind failed")
return False return False
except ldap3.LDAPInvalidCredentialsResult: except ldap3.core.exceptions.LDAPInvalidCredentialsResult:
self.logger.debug("LDAP invalid credentials") self.logger.debug("LDAP invalid credentials")
except Exception as err: except Exception as err:
self.logger.debug("LDAP error %s" % err) self.logger.debug("LDAP error %s" % err)