creditmutuel: fix listing of recipients in 'transfer'
Hi, Without the patch below, I get: Bug(creditmutuel): 'generator' object has no attribute 'itervalues' The patch fixes this. Thanks, Lucas Signed-off-by: Romain Bignon <romain@symlink.me>
This commit is contained in:
parent
efa53ff46b
commit
0dbd996388
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ class CreditMutuelBackend(BaseBackend, ICapBank):
|
||||||
yield tr
|
yield tr
|
||||||
|
|
||||||
def iter_transfer_recipients(self, ignored):
|
def iter_transfer_recipients(self, ignored):
|
||||||
for account in self.browser.get_accounts_list().itervalues():
|
for account in self.browser.get_accounts_list():
|
||||||
recipient = Recipient()
|
recipient = Recipient()
|
||||||
recipient.id = account.id
|
recipient.id = account.id
|
||||||
recipient.label = account.label
|
recipient.label = account.label
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue