From 596d7d56758e445046e2429f3b6d61fbe245d292 Mon Sep 17 00:00:00 2001 From: liu-sheng Date: Fri, 21 Mar 2014 15:28:45 +0800 Subject: [PATCH] Correct the help sting of volume-type-delete Change-Id: I10b1bd6d42e4085dc73572f05ed893385ca3e139 --- 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 c1754c986..e3171976d 100644 --- a/novaclient/v1_1/shell.py +++ b/novaclient/v1_1/shell.py @@ -1856,7 +1856,7 @@ def do_volume_type_create(cs, args): help=_("Unique ID of the volume type to delete")) @utils.service_type('volume') def do_volume_type_delete(cs, args): - """Delete a specific flavor""" + """Delete a specific volume type.""" cs.volume_types.delete(args.id)