fix when history is empty
This commit is contained in:
parent
0be25e5c29
commit
1e7e17cf4a
1 changed files with 1 additions and 1 deletions
|
|
@ -186,7 +186,7 @@ class AccountHistoryPage(BasePage):
|
||||||
for tr in table.iter('tr'):
|
for tr in table.iter('tr'):
|
||||||
# skip headers and empty rows
|
# skip headers and empty rows
|
||||||
if len(tr.findall("th"))!=0 or\
|
if len(tr.findall("th"))!=0 or\
|
||||||
len(tr.findall("td"))==0:
|
len(tr.findall("td"))<=1:
|
||||||
continue
|
continue
|
||||||
operation=Transaction(len(operations))
|
operation=Transaction(len(operations))
|
||||||
mntColumn=0
|
mntColumn=0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue