From ef375e09dded0d11137c06d1cabe20444655cde0 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 12 Jan 2017 21:36:27 -0500 Subject: [PATCH] Support -y for --yes. Add short form '-y' for '--yes', mainly because I'm lazy. Change-Id: Ia82f64246a191a1615ba1d886f80caa5f52cc835 Signed-off-by: Russell Bryant --- heatclient/osc/v1/stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heatclient/osc/v1/stack.py b/heatclient/osc/v1/stack.py index 719c0de7..cf03cec6 100644 --- a/heatclient/osc/v1/stack.py +++ b/heatclient/osc/v1/stack.py @@ -656,7 +656,7 @@ class DeleteStack(command.Command): help=_('Stack(s) to delete (name or ID)') ) parser.add_argument( - '--yes', + '-y', '--yes', action='store_true', help=_('Skip yes/no prompt (assume yes)') )