From 4c5806b4b42c63f08b286f984e4032fcefcfd1e8 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 16 Mar 2009 17:48:04 -0400 Subject: Fix some minor issues in group and service plugins --- ipalib/plugins/f_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/f_group.py') diff --git a/ipalib/plugins/f_group.py b/ipalib/plugins/f_group.py index 3a3debdb..b9f53691 100644 --- a/ipalib/plugins/f_group.py +++ b/ipalib/plugins/f_group.py @@ -411,7 +411,7 @@ class group_remove_member(Command): """ if result: print "These entries failed to be removed from the group:" - for a in remove_failed: + for a in result: print "\t'%s'" % a api.register(group_remove_member) -- cgit