From a85d7d100074cbc953afb1f99e61ba6580c3c7ab Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Mon, 10 Feb 2014 10:26:42 +1300 Subject: [PATCH] Add optional args arg back to do_list Without this change "heat list" does not work. Change-Id: Ie0bc4d0964fcb9d7a5e3271b739f053eb1c701fd Closes-Bug: #1278178 --- heatclient/v1/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py index 41bbff55..51f53c55 100644 --- a/heatclient/v1/shell.py +++ b/heatclient/v1/shell.py @@ -229,7 +229,7 @@ def do_stack_update(hc, args): do_stack_list(hc) -def do_list(hc): +def do_list(hc, args=None): '''DEPRECATED! Use stack-list instead.''' do_stack_list(hc)