From 2d6ef97254f4fc9ca0df01d31d2b9d3e66473f82 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Mon, 24 Nov 2008 15:20:17 -0700 Subject: do not use ipaerror directly in ipa-replica-manage - use ldap exception instead --- ipa-server/ipa-install/ipa-replica-manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-server/ipa-install/ipa-replica-manage b/ipa-server/ipa-install/ipa-replica-manage index fdd803f60..9d3ac712d 100755 --- a/ipa-server/ipa-install/ipa-replica-manage +++ b/ipa-server/ipa-install/ipa-replica-manage @@ -97,7 +97,7 @@ def list_masters(replman, verbose): def del_master(replman, hostname): try: t = replman.get_agreement_type(hostname) - except ipaerror.exception_for(ipaerror.LDAP_NOT_FOUND): + except ldap.NO_SUCH_OBJECT: print "No replication agreement found for %s" % hostname if t == replication.IPA_REPLICA: -- cgit