diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index 03e756f0..ac1f837d 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))