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]