From e07a459a80ad32d0a27910e3cc22244e78518c3c Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Wed, 3 Apr 2019 14:30:56 +0200 Subject: [PATCH] =?UTF-8?q?[cragr/api]=20Types=20pr=C3=AAts=20conventionn?= =?UTF-8?q?=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If Loans are not correctly typed, it may cause ID duplicates when calling iter_accounts(). Closes: 10623@zendesk --- modules/cragr/api/pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/cragr/api/pages.py b/modules/cragr/api/pages.py index aa99106816..27cb8fd4ec 100644 --- a/modules/cragr/api/pages.py +++ b/modules/cragr/api/pages.py @@ -119,6 +119,7 @@ class ContractsPage(LoggedPage, HTMLPage): 'PRET PERSO': Account.TYPE_LOAN, 'P. ENTREPR': Account.TYPE_LOAN, 'P. HABITAT': Account.TYPE_LOAN, + 'P. CONV.': Account.TYPE_LOAN, 'PRET 0%': Account.TYPE_LOAN, 'INV PRO': Account.TYPE_LOAN, 'TRES. PRO': Account.TYPE_LOAN, -- GitLab