From 5d5b12c12448af8bb1e23b3f80511e045b33b8d0 Mon Sep 17 00:00:00 2001 From: "BastelBaus@gmail.com" <44684710+BastelBaus@users.noreply.github.com> Date: Mon, 24 Mar 2025 22:14:29 +0100 Subject: [PATCH] fixed flake8 errors --- DOCUMENTATION.md | 2 +- radicale/auth/ldap.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 717c9e9d..16b4518b 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -1062,7 +1062,7 @@ Default: ##### ldap_ignore_attribute_create_modify_timestamp -_(>= 3.6.0)_ +_(>= 3.5.1)_ Add modifyTimestamp and createTimestamp to the exclusion list of internal ldap3 client so that these schema attributes are not checked. This is needed for Authentik since diff --git a/radicale/auth/ldap.py b/radicale/auth/ldap.py index c58acd0b..da84225f 100644 --- a/radicale/auth/ldap.py +++ b/radicale/auth/ldap.py @@ -63,11 +63,11 @@ class Auth(auth.BaseAuth): self.ldap = ldap except ImportError as e: raise RuntimeError("LDAP authentication requires the ldap3 module") from e - + self._ldap_ignore_attribute_create_modify_timestamp = configuration.get("auth", "ldap_ignore_attribute_create_modify_timestamp") if self._ldap_ignore_attribute_create_modify_timestamp: - self.ldap3.utils.config._ATTRIBUTES_EXCLUDED_FROM_CHECK.extend(['createTimestamp','modifyTimestamp']) - logger.info("auth.ldap_ignore_attribute_create_modify_timestamp applied") + self.ldap3.utils.config._ATTRIBUTES_EXCLUDED_FROM_CHECK.extend(['createTimestamp', 'modifyTimestamp']) + logger.info("auth.ldap_ignore_attribute_create_modify_timestamp applied") self._ldap_uri = configuration.get("auth", "ldap_uri") self._ldap_base = configuration.get("auth", "ldap_base")