fixing wrong date guessing
This commit is contained in:
parent
0ce45770fb
commit
9855ae8fa9
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue