diff --git a/modules/lcl/pages.py b/modules/lcl/pages.py index e2cd3524..670c4d19 100644 --- a/modules/lcl/pages.py +++ b/modules/lcl/pages.py @@ -186,7 +186,7 @@ class AccountHistoryPage(BasePage): for tr in table.iter('tr'): # skip headers and empty rows if len(tr.findall("th"))!=0 or\ - len(tr.findall("td"))==0: + len(tr.findall("td"))<=1: continue operation=Transaction(len(operations)) mntColumn=0