From 1216a32a287ac3c276c4ad15c70a12ab3f5d9dba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20G=C3=B3rski?= Date: Mon, 8 Apr 2013 07:04:11 -0700 Subject: [PATCH] Fixing shell command 'service-disable' description Fixes: bug #1166217 Change-Id: I0ba609750551540f9cd91492191b222961e99fb1 --- novaclient/v1_1/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novaclient/v1_1/shell.py b/novaclient/v1_1/shell.py index 696b40d9a..4a0194c6e 100644 --- a/novaclient/v1_1/shell.py +++ b/novaclient/v1_1/shell.py @@ -2408,7 +2408,7 @@ def do_service_enable(cs, args): @utils.arg('host', metavar='', help='Name of host.') @utils.arg('binary', metavar='', help='Service binary.') def do_service_disable(cs, args): - """Enable the service""" + """Disable the service""" result = cs.services.disable(args.host, args.binary) utils.print_list([result], ['Host', 'Binary', 'Status'])