diff options
author | Rob Crittenden <rcritten@redhat.com> | 2009-03-16 17:48:04 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-03-17 14:52:38 -0400 |
commit | 4c5806b4b42c63f08b286f984e4032fcefcfd1e8 (patch) | |
tree | 2ca636aae0ee16d2ddeba1dea07dede624d9b40f /ipalib/plugins/f_group.py | |
parent | 6fa330662ad1df7f95ba7ce758fdd03d4527abe4 (diff) | |
download | freeipa.git-4c5806b4b42c63f08b286f984e4032fcefcfd1e8.tar.gz freeipa.git-4c5806b4b42c63f08b286f984e4032fcefcfd1e8.tar.xz freeipa.git-4c5806b4b42c63f08b286f984e4032fcefcfd1e8.zip |
Fix some minor issues in group and service plugins
Diffstat (limited to 'ipalib/plugins/f_group.py')
-rw-r--r-- | ipalib/plugins/f_group.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |