fix crash when there is no ID on a transaction
This commit is contained in:
parent
d5fabd9c75
commit
67c24a8926
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ class TransactionsPage(BasePage):
|
|||
is_coming = False
|
||||
continue
|
||||
|
||||
t = Transaction(col_label.attrib['id'])
|
||||
t = Transaction(col_label.attrib.get('id', ''))
|
||||
|
||||
# an optional tooltip on page contain the second part of the transaction label.
|
||||
tooltip = self.document.xpath('//div[@id="tooltip%s"]' % t.id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue