fix parsing of 'tomorrow' transaction dates
This commit is contained in:
parent
8a25c75999
commit
2d08719789
1 changed files with 2 additions and 0 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue