From 6896626baa609a1eb3ed815060fac43cf5920778 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Tue, 22 Jan 2013 15:03:12 +0100 Subject: Remove the Entry class. --- ipaserver/install/ldapupdate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver/install/ldapupdate.py') diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py index a35df371a..f7f6c0594 100644 --- a/ipaserver/install/ldapupdate.py +++ b/ipaserver/install/ldapupdate.py @@ -481,7 +481,7 @@ class LDAPUpdate: def _create_default_entry(self, dn, default): """Create the default entry from the values provided. - The return type is ipaldap.Entry + The return type is ipaldap.LDAPEntry """ assert isinstance(dn, DN) entry = self.conn.make_entry(dn) @@ -507,7 +507,7 @@ class LDAPUpdate: def _get_entry(self, dn): """Retrieve an object from LDAP. - The return type is ipaldap.Entry + The return type is ipaldap.LDAPEntry """ assert isinstance(dn, DN) searchfilter="objectclass=*" -- cgit