From 9d2996b82a3a78efd85d09e8bc4dd733410373a7 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Fri, 22 May 2015 15:43:23 +0200 Subject: [PATCH] add a kind of life insurance account name --- modules/ing/pages/accounts_list.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/ing/pages/accounts_list.py b/modules/ing/pages/accounts_list.py index 2b033c2b..8cef1555 100644 --- a/modules/ing/pages/accounts_list.py +++ b/modules/ing/pages/accounts_list.py @@ -60,7 +60,9 @@ class AddType(Filter): types = {u'Courant': Account.TYPE_CHECKING, u'Livret A': Account.TYPE_SAVINGS, u'Orange': Account.TYPE_SAVINGS, u'Durable': Account.TYPE_SAVINGS, u'Titres': Account.TYPE_MARKET, u'PEA': Account.TYPE_MARKET, - u'Direct Vie': Account.TYPE_LIFE_INSURANCE} + u'Direct Vie': Account.TYPE_LIFE_INSURANCE, + u'Assurance Vie': Account.TYPE_LIFE_INSURANCE + } def filter(self, label): for key, acc_type in self.types.items():