[fs2zammad] fix dict access synthax in user lookup

This commit is contained in:
fnux 2024-05-08 18:11:41 +02:00
parent 5ca451510f
commit 64218fe9d8
No known key found for this signature in database
GPG key ID: 4502C902C00A1E12

View file

@ -92,7 +92,7 @@ def maybe_create_zammad_user(userdata, zammad_session, attr="login", default=Non
# The use probably exist already...
result = list(zammad.user.search(lowercase_email))
if len(result) >= 1:
user = next(u for u in result if u.email == lowercase_email)
user = next(u for u in result if u['email'] == lowercase_email)
USERMAP[lowercase_email] = user
else:
print(f"Could not create/fetch user {lowercase_email}")