From 88720fff2158d3219fac54f411df24db791812f0 Mon Sep 17 00:00:00 2001 From: Florent Date: Thu, 13 Dec 2012 21:51:47 +0100 Subject: [PATCH] Add Livret Epargne Orange support --- modules/ing/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ing/browser.py b/modules/ing/browser.py index a5adebfd..3be02716 100644 --- a/modules/ing/browser.py +++ b/modules/ing/browser.py @@ -103,7 +103,7 @@ class Ing(BaseBrowser): # The first and the second letter of the label are the account type if account.label[0:2] == "CC": self.location('https://secure.ingdirect.fr/protected/pages/cc/accountDetail.jsf') - elif account.label[0:2] == "LA": + elif account.label[0:2] == "LA" or account.label[0:3] == "LEO": # we want "displayTRHistoriqueLA" but this fucking page # is not directly available... self.location('https://secure.ingdirect.fr/general?command=goToAccount&account=%d&zone=COMPTE' % int(account._index))