fix parsing transaction IDs (closes #879)
This commit is contained in:
parent
818da4da2e
commit
8c82b7c3f1
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class AccountHistory(BasePage):
|
||||||
if len(tr.xpath('td[@class="debit"]')) == 0:
|
if len(tr.xpath('td[@class="debit"]')) == 0:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
id = tr.find('td').find('input').attrib['value']
|
id = tr.find('td').find('input').attrib['id'].lstrip('_')
|
||||||
op = Transaction(id)
|
op = Transaction(id)
|
||||||
op.parse(date=tr.findall('td')[1].text,
|
op.parse(date=tr.findall('td')[1].text,
|
||||||
raw=tr.findall('td')[2].text.replace(u'\xa0', u''))
|
raw=tr.findall('td')[2].text.replace(u'\xa0', u''))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue