correctly parse label of deferred card transactions
This commit is contained in:
parent
72c97ecc8b
commit
45a5080332
1 changed files with 2 additions and 0 deletions
|
|
@ -60,6 +60,8 @@ class AccountHistory(BasePage):
|
|||
labeldiv = tds[2].find('div')
|
||||
label = u''
|
||||
label += labeldiv.text
|
||||
if labeldiv.find('a') is not None:
|
||||
label += labeldiv.find('a').text
|
||||
label = label.strip(u' \n\t')
|
||||
|
||||
category = labeldiv.attrib.get('title', '')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue