diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index 03e756f016be20f419d314a8a71af6c25e3fd0e6..ac1f837d3f82b9dc8cac6c3ed99dc97d11a129f3 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -107,9 +107,7 @@ class Transaction(CapBaseObject): amount = DecimalField('Amount of the transaction') def __repr__(self): - label = self.label.encode('utf-8') if self.label else self.label - return "" % (self.date, - label, self.amount) + return "" % (self.date, self.label, self.amount) def unique_id(self, seen=None, account_id=None): crc = crc32(str(self.date))