fix: the operation's label might be unicode (reported by blino)

This commit is contained in:
Romain Bignon 2010-08-26 17:54:39 +02:00
commit aaffdbf8d6

View file

@ -77,7 +77,7 @@ class Operation(CapBaseObject):
@label.setter
def label(self, value):
self._label = str(value)
self._label = unicode(value)
@property
def amount(self):