fix: credit and debit where inversed
This commit is contained in:
parent
2d463e060e
commit
c902802160
1 changed files with 2 additions and 2 deletions
|
|
@ -65,8 +65,8 @@ class AccountHistory(BasePage):
|
||||||
category = labeldiv.attrib.get('title', '')
|
category = labeldiv.attrib.get('title', '')
|
||||||
useless, sep, category = [part.strip() for part in category.partition(':')]
|
useless, sep, category = [part.strip() for part in category.partition(':')]
|
||||||
|
|
||||||
credit = tds[3].text or ""
|
debit = tds[3].text or ""
|
||||||
debit = tds[4].text or ""
|
credit = tds[4].text or ""
|
||||||
|
|
||||||
operation = Transaction(len(self.operations))
|
operation = Transaction(len(self.operations))
|
||||||
operation.parse(date=d, raw=label)
|
operation.parse(date=d, raw=label)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue