Some manual style fixes
This commit is contained in:
parent
e0542c2e4a
commit
fbe0fb8d52
10 changed files with 18 additions and 14 deletions
|
|
@ -74,8 +74,10 @@ class AccountHistory(BasePage):
|
|||
text = tds[1].text or u''
|
||||
text = text.replace(u'\xa0', u'')
|
||||
for child in tds[1].getchildren():
|
||||
if child.text: text += child.text
|
||||
if child.tail: text += child.tail
|
||||
if child.text:
|
||||
text += child.text
|
||||
if child.tail:
|
||||
text += child.tail
|
||||
|
||||
i += 1
|
||||
operation = Transaction(i)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue