use self.do instead of self.weboob.do in console apps

This commit is contained in:
Christophe Benz 2010-08-12 16:44:42 +02:00
commit 7df5136b5f
10 changed files with 21 additions and 21 deletions

View file

@ -46,7 +46,7 @@ class WeboobCli(ConsoleApplication):
else:
self.load_backends(cap_s)
for backend, obj in self.weboob.do(cmd, *args):
for backend, obj in self.do(cmd, *args):
self.format(obj, backend.name)
return 0