Some manual style fixes

This commit is contained in:
Laurent Bachelier 2013-03-15 22:31:33 +01:00
commit fbe0fb8d52
10 changed files with 18 additions and 14 deletions

View file

@ -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)