go on the savings page to get more accounts (patch from Xavier Guerrin)

This commit is contained in:
Romain Bignon 2013-03-21 10:48:39 +01:00
commit 5c718184c6
2 changed files with 19 additions and 2 deletions

View file

@ -77,6 +77,8 @@ class AccountsPage(BasePage):
continue
cols = tr.findall('td')
if not cols:
continue
account = Account()
account.id = self.parser.tocleanstring(cols[self.COL_ID])
@ -91,6 +93,8 @@ class AccountsPage(BasePage):
yield account
class SavingsPage(AccountsPage):
COL_ID = 1
class TransactionsPage(BasePage):
def get_next_url(self):