reintroduce the 'list' command on boobank
This commit is contained in:
parent
daa524d75d
commit
84f74f9f9f
1 changed files with 8 additions and 0 deletions
|
|
@ -123,6 +123,14 @@ class Boobank(ReplApplication):
|
|||
|
||||
return [s for s in self._complete_object() if s != exclude]
|
||||
|
||||
def do_list(self, line):
|
||||
"""
|
||||
list
|
||||
|
||||
List accounts.
|
||||
"""
|
||||
return self.do_ls(line)
|
||||
|
||||
def complete_history(self, text, line, *ignored):
|
||||
args = line.split(' ')
|
||||
if len(args) == 2:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue