From 514a6b35856079eaa3da14670164109a491e7bac Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Fri, 1 Jul 2011 00:00:12 +0200 Subject: [PATCH] Fix account list with CA Toulouse Yes, they just removed a surrounding tag. Nothing else changed. --- weboob/backends/cragr/pages/accounts_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weboob/backends/cragr/pages/accounts_list.py b/weboob/backends/cragr/pages/accounts_list.py index cc75fba0..464bfe00 100644 --- a/weboob/backends/cragr/pages/accounts_list.py +++ b/weboob/backends/cragr/pages/accounts_list.py @@ -55,7 +55,7 @@ class AccountsList(CragrBasePage): account.label = div.find('a').text.strip() account.link_id = div.find('a').get('href', '') account.id = div.findall('br')[1].tail.strip() - s = div.find('div').find('span').find('b').text + s = div.find('div').find('b').text account.balance = clean_amount(s) l.append(account) return l