From fbdeda1da0349792ebde6e1756b0652832a67018 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 23 Nov 2011 17:16:05 -0500 Subject: Fix some issues introduced when rebasing update patch --- ipaserver/install/ldapupdate.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipaserver/install/ldapupdate.py') diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py index c396dab6..575f2242 100644 --- a/ipaserver/install/ldapupdate.py +++ b/ipaserver/install/ldapupdate.py @@ -695,7 +695,7 @@ class LDAPUpdate: deletes = updates.get('deleteentry', []) for d in deletes: try: - root_logger.info('Deleting entry %s", dn) + root_logger.info("Deleting entry %s", dn) if self.live_run: self.conn.deleteEntry(dn) self.modified = True @@ -712,7 +712,7 @@ class LDAPUpdate: if utype == 'deleteentry': try: - root_logger.info('Deleting entry %s", dn) + root_logger.info("Deleting entry %s", dn) if self.live_run: self.conn.deleteEntry(dn) self.modified = True @@ -783,7 +783,7 @@ class LDAPUpdate: updates = None if self.plugins: - logging.info('PRE_UPDATE') + root_logger.info('PRE_UPDATE') updates = api.Backend.updateclient.update(PRE_UPDATE, self.dm_password, self.ldapi, self.live_run) try: @@ -819,7 +819,7 @@ class LDAPUpdate: if self.conn: self.conn.unbind() if self.plugins: - logging.info('POST_UPDATE') + root_logger.info('POST_UPDATE') updates = api.Backend.updateclient.update(POST_UPDATE, self.dm_password, self.ldapi, self.live_run) dn_list = {} for upd in updates: -- cgit