From 334a0cdcdc16ac50de2be1f751262bd87d0e5e86 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 30 Jan 2013 06:46:48 -0500 Subject: Remove IPAdmin.unbind_s(), keep unbind() The unbind and unbind_s functions do the same thing (both are synchronous). In the low-level IPASimpleLDAPObject, unbind_s rather than unbind is kept. Part of the work for: https://fedorahosted.org/freeipa/ticket/2660 --- ipaserver/install/cainstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipaserver/install/cainstance.py') diff --git a/ipaserver/install/cainstance.py b/ipaserver/install/cainstance.py index 30f2b6bef..256479875 100644 --- a/ipaserver/install/cainstance.py +++ b/ipaserver/install/cainstance.py @@ -1084,7 +1084,7 @@ class CAInstance(service.Service): modlist = [(0, 'uniqueMember', '%s' % entry_dn)] conn.modify_s(dn, modlist) - conn.unbind_s() + conn.unbind() def __run_certutil(self, args, database=None, pwd_file=None,stdin=None): if not database: -- cgit