From 5cb16a3a2da779bb4116b5af25d662ca6ab8d607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dipl=2E=20Ing=2E=20P=C3=A9ter=20Varkoly?= Date: Mon, 9 Sep 2024 09:42:30 +0200 Subject: [PATCH] Fix syntax --- radicale/auth/ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/auth/ldap.py b/radicale/auth/ldap.py index 79feccd6..7c0e27d6 100644 --- a/radicale/auth/ldap.py +++ b/radicale/auth/ldap.py @@ -106,7 +106,7 @@ class Auth(auth.BaseAuth): """Search the user dn""" conn.search( search_base = self._ldap_base, - search_filter = self._ldap_filter.format(login) + search_filter = self._ldap_filter.format(login), search_scope = 'SUBTREE', attributes = ['memberOf'] )