From f8a6da674cef61b781711924691a49fd1819eb6a Mon Sep 17 00:00:00 2001 From: Mathieu Lordon Date: Fri, 30 Aug 2013 17:27:49 +0200 Subject: [PATCH] Add LDD support to ING --- modules/ing/pages/accounts_list.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/ing/pages/accounts_list.py b/modules/ing/pages/accounts_list.py index 1aa66d01..585cf565 100644 --- a/modules/ing/pages/accounts_list.py +++ b/modules/ing/pages/accounts_list.py @@ -74,6 +74,9 @@ class AccountsList(BasePage): elif "Orange" in account.label: account.id = "LEO-" + account.id account.type = Account.TYPE_SAVINGS + elif "Durable" in account.label: + account.id = "LDD-" + account.id + account.type = Account.TYPE_SAVINGS elif "Titres" in account.label: account.id = "TITRE-" + account.id account.type = Account.TYPE_MARKET