From 5ef6b8a346d8e6a43e03a8b8bee7adcd12513b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Rigo?= Date: Mon, 22 Jun 2015 15:54:41 +0200 Subject: [PATCH] Fix CC history for boursorama MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hi, current weboob git actually lists the previous month when asking for the history of a credit card. A website change broke the current logic. Attached patch fixes it. Raphaƫl --- modules/boursorama/browser.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/boursorama/browser.py b/modules/boursorama/browser.py index 3716ac32..4ae8a8df 100644 --- a/modules/boursorama/browser.py +++ b/modules/boursorama/browser.py @@ -133,11 +133,6 @@ class Boursorama(StateBrowser): def get_history(self, account): link = account._link_id - #We need to skip the first link on card page because there is a summary, - #and so the recent transaction are displayed twice - if account.type == Account.TYPE_CARD: - self.location(link) - link = self.page.get_next_url() while link is not None: self.location(link)