fix error
This commit is contained in:
parent
0b9ed305f8
commit
73f6617442
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ class IndexPage(BasePage):
|
|||
m = re.match("^javascript:__doPostBack\('.*','HISTORIQUE_COMPTE&(\d+)'\)", a.attrib['href'])
|
||||
|
||||
if not m:
|
||||
self.logger.warning('Unable to parse account %s' % a.text.strip())
|
||||
self.logger.warning('Unable to parse account %s' % (a.text.strip() if a.text is not None else ''))
|
||||
continue
|
||||
|
||||
account = Account()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue