From 9855ae8fa9bef5c0f8f3968b7b16b76f9060c88b Mon Sep 17 00:00:00 2001 From: Vincent Paredes Date: Tue, 18 Feb 2014 16:11:00 +0100 Subject: [PATCH] fixing wrong date guessing --- modules/americanexpress/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/americanexpress/pages.py b/modules/americanexpress/pages.py index 1d957614..8a193300 100644 --- a/modules/americanexpress/pages.py +++ b/modules/americanexpress/pages.py @@ -107,7 +107,7 @@ class TransactionsPage(BasePage): day, month = self.parser.tocleanstring(cols[self.COL_DATE]).split(' ', 1) day = int(day) month = self.MONTHS.index(month.rstrip('.')) + 1 - date = guesser.guess_date(day, month) + date = guesser.guess_date(day, month, False) try: detail = self.parser.select(cols[self.COL_TEXT], 'div.hiddenROC', 1)