From 08e6aff39fa9e204a9f33405dc93dbd86aeeb058 Mon Sep 17 00:00:00 2001 From: Vincent Paredes Date: Mon, 20 Apr 2015 18:41:34 +0200 Subject: [PATCH] fix async bug with cards --- modules/lcl/pages.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/lcl/pages.py b/modules/lcl/pages.py index ef0d78aa..25d3fa83 100644 --- a/modules/lcl/pages.py +++ b/modules/lcl/pages.py @@ -251,6 +251,9 @@ class AccountHistoryPage(LoggedPage, HTMLPage): class CBHistoryPage(AccountHistoryPage): def get_operations(self): + def validate(self, obj): + return True + self._get_operations.item.validate = validate for tr in AccountHistoryPage.get_operations(self): tr.type = tr.TYPE_CARD yield tr