From 04a39954168202dabc9f9f870795ec370d9f448b Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Mon, 20 May 2013 20:59:01 +0200 Subject: [PATCH] use the operation date, not value one --- modules/banquepopulaire/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/banquepopulaire/pages.py b/modules/banquepopulaire/pages.py index 7fcada0a..6d64582e 100644 --- a/modules/banquepopulaire/pages.py +++ b/modules/banquepopulaire/pages.py @@ -292,7 +292,7 @@ class TransactionsPage(BasePage): t = Transaction(tr.attrib['id'].split('_', 1)[1]) - date = u''.join([txt.strip() for txt in tds[4].itertext()]) + date = u''.join([txt.strip() for txt in tds[3].itertext()]) raw = u' '.join([txt.strip() for txt in tds[1].itertext()]) debit = u''.join([txt.strip() for txt in tds[-2].itertext()]) credit = u''.join([txt.strip() for txt in tds[-1].itertext()])