fix parsing funding accounts
This commit is contained in:
parent
63e1920c2b
commit
8c3d8c30b8
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class IndexPage(BasePage):
|
||||||
account_type = self.ACCOUNT_TYPES.get(tds[1].text.strip(), Account.TYPE_UNKNOWN)
|
account_type = self.ACCOUNT_TYPES.get(tds[1].text.strip(), Account.TYPE_UNKNOWN)
|
||||||
else:
|
else:
|
||||||
a = tds[1].find('a')
|
a = tds[1].find('a')
|
||||||
m = re.match("^javascript:__doPostBack\('.*','HISTORIQUE_COMPTE&(\d+)'\)", a.attrib['href'])
|
m = re.match("^javascript:__doPostBack\('.*','HISTORIQUE_COMPTE&(\d+)'\)", a.attrib.get('href', ''))
|
||||||
|
|
||||||
if not m:
|
if not m:
|
||||||
self.logger.warning('Unable to parse account %s' % (a.text.strip() if a.text is not None else ''))
|
self.logger.warning('Unable to parse account %s' % (a.text.strip() if a.text is not None else ''))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue