From 0f2d4e49f423e6f6496c6926d39084fecc36c78c Mon Sep 17 00:00:00 2001
From: Dennis Ahrens <dennis.ahrens@hs-hannover.de>
Date: Tue, 3 Mar 2015 15:32:17 +0100
Subject: [PATCH] [BUGFIX] Calls aout modifyModlist again.

the revert commit had changed this back again...
---
 hshetl/loaders.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hshetl/loaders.py b/hshetl/loaders.py
index e3f85cb..598de0d 100644
--- a/hshetl/loaders.py
+++ b/hshetl/loaders.py
@@ -379,7 +379,7 @@ class LdapLoader(AbstractLoader):
             dict_data = record.to_dict()
             entity_dict = self._prepare_data(dict_data)
             dn = self._get_dn(record.get_container_identifier(), dict_data)
-            attributes = modlist.modifyModlist(old_entity_dict, entity_dict)
+            attributes = self.modifyModlist(old_entity_dict, entity_dict)
             try:
                 if self.dry:
                     logging.info('Would modify dn {} with {} '.format(dn, self._generate_modify_logging(attributes, old_entity_dict, entity_dict)))
-- 
GitLab