From ab1aba5a9a97524645fa6a232fb1df397cb0355a Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 17 Dec 2009 23:57:39 -0700 Subject: Added Fuzzy docstrings; make-test now runs doctests in tests/*; fixed 'existant' mispelling --- ipaserver/install/ldapupdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipaserver') diff --git a/ipaserver/install/ldapupdate.py b/ipaserver/install/ldapupdate.py index ad2067c0..c0345918 100644 --- a/ipaserver/install/ldapupdate.py +++ b/ipaserver/install/ldapupdate.py @@ -566,7 +566,7 @@ class LDAPUpdate: self.conn.deleteEntry(dn) self.modified = True except errors.NotFound, e: - logging.info("Deleting non-existant entry %s", e) + logging.info("Deleting non-existent entry %s", e) self.modified = True except errors.DatabaseError, e: logging.error("Delete failed: %s", e) -- cgit