fix bp backend (closes #730)

Signed-off-by: Nicolas Duhamel <nicolas@jombi.fr>
Signed-off-by: Romain Bignon <romain@peerfuse.org>
This commit is contained in:
Nicolas Duhamel 2011-12-04 11:49:19 +01:00 committed by Romain Bignon
commit c5e68a2c44

View file

@ -39,7 +39,7 @@ class AccountHistory(BasePage):
operation = Operation(len(operations))
operation.date = mvt.xpath("./td/span")[0].text
tmp = mvt.xpath("./td/span")[1]
operation.label = self.parser.tocleanstring(tmp)
operation.label = unicode(self.parser.tocleanstring(tmp))
r = re.compile(r'\d+')