Skip to content

Commit

Permalink
ldapsync: fix incorrect function name
Browse files Browse the repository at this point in the history
  • Loading branch information
timhawes committed Jul 20, 2024
1 parent 081a2fe commit 38aa5a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ldapsync/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def sync_group(group, dry_run=False):
users_base_dn=settings.LDAPSYNC_USERS_BASE_DN,
)
if settings.LDAPSYNC_POSIX_GROUPS_BASE_DN and group.posix:
posix_dn, posix_entry = serializers.posix_group_serializer(
posix_dn, posix_entry = serializers.serialize_posixgroup(
group, settings.LDAPSYNC_POSIX_GROUPS_BASE_DN
)
server = LDAP(dry_run=dry_run)
Expand Down

0 comments on commit 38aa5a5

Please sign in to comment.