summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/ldapupdate.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-01-23 09:35:55 -0500
committerMartin Kosek <mkosek@redhat.com>2013-03-01 16:59:45 +0100
commite815c1893d4f8118c1308cb7e306826442988863 (patch)
treeff9d3c447d63481229dd809e1ffb021ac3d3a990 /ipaserver/install/ldapupdate.py
parentf8ad7cb96f065ca0dc557d8be95fd33a95d34d17 (diff)
downloadfreeipa.git-e815c1893d4f8118c1308cb7e306826442988863.tar.gz
freeipa.git-e815c1893d4f8118c1308cb7e306826442988863.tar.xz
freeipa.git-e815c1893d4f8118c1308cb7e306826442988863.zip
Replace deleteEntry with delete_entry
Part of the work for: https://fedorahosted.org/freeipa/ticket/2660
Diffstat (limited to 'ipaserver/install/ldapupdate.py')
-rw-r--r--ipaserver/install/ldapupdate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py
index aaef1c71..25ff49ab 100644
--- a/ipaserver/install/ldapupdate.py
+++ b/ipaserver/install/ldapupdate.py
@@ -835,7 +835,7 @@ class LDAPUpdate:
try:
self.info("Deleting entry %s", dn)
if self.live_run:
- self.conn.deleteEntry(dn)
+ self.conn.delete_entry(dn)
self.modified = True
except errors.NotFound, e:
self.info("%s did not exist:%s", dn, e)