From 2d08719789adc9586165468a7704f2f7e4b28a04 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Tue, 2 Sep 2014 15:03:26 +0200 Subject: [PATCH] fix parsing of 'tomorrow' transaction dates --- modules/ing/pages/accounts_list.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ing/pages/accounts_list.py b/modules/ing/pages/accounts_list.py index acccb38e..f24a27f2 100644 --- a/modules/ing/pages/accounts_list.py +++ b/modules/ing/pages/accounts_list.py @@ -88,6 +88,8 @@ class INGDate(Date): return (date.today() - timedelta(days=1)) elif txt == "aujourd'hui": return date.today() + elif txt == 'demain': + return (date.today() + timedelta(days=1)) else: frenchmonth = txt.split(' ')[1] month = self.monthvalue[frenchmonth]