Fix syntax

This commit is contained in:
Dipl. Ing. Péter Varkoly 2024-09-09 09:42:30 +02:00
parent 606bd30514
commit 5cb16a3a2d

View file

@ -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']
)