Add a required 'args' to do_list()

It seems all do_*() functions need an "args" parameter.
Although it's deprecated, it should still work.

Change-Id: Id4f392b275ca231bdea584a0d68ec177c5ebeaaa
Closes-bug: #1373219
This commit is contained in:
Angus Salkeld 2014-09-24 14:20:15 +10:00
parent 21b81cc7cc
commit 346e163400
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ def do_stack_cancel_update(hc, args):
do_stack_list(hc)
def do_list(hc):
def do_list(hc, args):
'''DEPRECATED! Use stack-list instead.'''
logger.warning('DEPRECATED! Use stack-list instead.')
do_stack_list(hc)