fix backend to new bnporc website (closes #701)

This commit is contained in:
Romain Bignon 2011-09-20 12:31:12 +02:00
commit a2f72f9e52
8 changed files with 87 additions and 92 deletions

View file

@ -76,12 +76,12 @@ class BNPorcBackend(BaseBackend, ICapBank):
def iter_history(self, account):
with self.browser:
for history in self.browser.get_history(account):
for history in self.browser.get_history(account.id):
yield history
def iter_operations(self, account):
with self.browser:
for coming in self.browser.get_coming_operations(account):
for coming in self.browser.get_coming_operations(account.id):
yield coming
def iter_transfer_recipients(self, ignored):