summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/f_service.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-03-16 17:48:04 -0400
committerRob Crittenden <rcritten@redhat.com>2009-03-17 14:52:38 -0400
commit4c5806b4b42c63f08b286f984e4032fcefcfd1e8 (patch)
tree2ca636aae0ee16d2ddeba1dea07dede624d9b40f /ipalib/plugins/f_service.py
parent6fa330662ad1df7f95ba7ce758fdd03d4527abe4 (diff)
downloadfreeipa.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_service.py')
-rw-r--r--ipalib/plugins/f_service.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/ipalib/plugins/f_service.py b/ipalib/plugins/f_service.py
index 918eef90..30195496 100644
--- a/ipalib/plugins/f_service.py
+++ b/ipalib/plugins/f_service.py
@@ -116,8 +116,7 @@ class service_add(crud.Add):
return ldap.create(**kw)
def output_to_cli(self, ret):
- if ret:
- print "Service added"
+ textui.print_plain("Service added")
api.register(service_add)
@@ -140,8 +139,7 @@ class service_del(crud.Del):
return ldap.delete(dn)
def output_to_cli(self, ret):
- if ret:
- print "Service removed"
+ textui.print_plain("Service removed")
api.register(service_del)