aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--radicale_auth_ldap/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/radicale_auth_ldap/__init__.py b/radicale_auth_ldap/__init__.py
index 859c7c6..d04c43b 100644
--- a/radicale_auth_ldap/__init__.py
+++ b/radicale_auth_ldap/__init__.py
@@ -26,6 +26,7 @@ Authentication based on the ``ldap3`` module
"""
import ldap3
+import ldap3.core.exceptions
import ldap3.utils.dn
from radicale.auth import BaseAuth
@@ -84,7 +85,7 @@ class Auth(BaseAuth):
else:
self.logger.debug("LDAP bind failed")
return False
- except ldap3.LDAPInvalidCredentialsResult:
+ except ldap3.core.exceptions.LDAPInvalidCredentialsResult:
self.logger.debug("LDAP invalid credentials")
except Exception as err:
self.logger.debug("LDAP error %s" % err)
bgstack15