Another unicode -> str bug (#1194)
This commit is contained in:
parent
5e0e1c09b3
commit
6eb2155497
|
@ -233,8 +233,9 @@ class Ui_AddressWidget(BMTreeWidgetItem, SettingsMixin):
|
||||||
and self.type != AccountMixin.SUBSCRIPTION:
|
and self.type != AccountMixin.SUBSCRIPTION:
|
||||||
BMConfigParser().set(
|
BMConfigParser().set(
|
||||||
str(self.address), 'label',
|
str(self.address), 'label',
|
||||||
str(value).toString().toUtf8()
|
str(value.toString().toUtf8())
|
||||||
if isinstance(value, QtCore.QVariant) else str(value)
|
if isinstance(value, QtCore.QVariant)
|
||||||
|
else value.encode('utf-8')
|
||||||
)
|
)
|
||||||
BMConfigParser().save()
|
BMConfigParser().save()
|
||||||
return super(Ui_AddressWidget, self).setData(column, role, value)
|
return super(Ui_AddressWidget, self).setData(column, role, value)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user