fix determination of balance

This commit is contained in:
Romain Bignon 2014-05-08 11:18:05 +02:00
commit a64ae7ddfe
2 changed files with 8 additions and 4 deletions

View file

@ -65,6 +65,8 @@ class BanqueAccordBrowser(LoginBrowser):
self.accounts.go()
a.balance = self.page.get_balance()
a.type = a.TYPE_CARD
if a.balance is None:
continue
yield a
@need_login