Account.link_id becomes a private attribute

This commit is contained in:
Romain Bignon 2012-03-10 09:03:26 +01:00
commit 35688f58c9
18 changed files with 37 additions and 30 deletions

View file

@ -76,11 +76,11 @@ class BNPorcBackend(BaseBackend, ICapBank):
def iter_history(self, account):
with self.browser:
return self.browser.iter_history(account.link_id)
return self.browser.iter_history(account._link_id)
def iter_operations(self, account):
with self.browser:
return self.browser.iter_coming_operations(account.link_id)
return self.browser.iter_coming_operations(account._link_id)
def iter_transfer_recipients(self, ignored):
for account in self.browser.get_transfer_accounts().itervalues():