More unicode fixes

Addresses #180
This commit is contained in:
mailchuck 2016-03-12 11:03:08 +01:00 committed by Peter Surda
parent da036c6b6b
commit 8d8cfe8555
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ class Ui_AddressBookWidgetItem(QtGui.QTableWidgetItem, AccountMixin):
def setData(self, role, value):
if role == QtCore.Qt.EditRole:
if isinstance(value, QtCore.QVariant):
self.label = str(value.toString())
self.label = str(value.toString().toUtf8())
else:
self.label = str(value)
if self.type in (AccountMixin.NORMAL, AccountMixin.MAILINGLIST, AccountMixin.CHAN):