oops fix bad function name

This commit is contained in:
Romain Bignon 2010-09-24 13:45:50 -04:00
commit d0730472d8
5 changed files with 5 additions and 5 deletions

View file

@ -99,7 +99,7 @@ class Boobank(ReplApplication):
Make a transfer beetwen two account
"""
id_from, id_to, amount = self.parseline(line, 3, 3)
id_from, id_to, amount = self.parseargs(line, 3, 3)
id_from, backend_name = self.parse_id(id_from)
id_to, backend_name = self.parse_id(id_to)