Fix TAG_String value returned as str
(should be unicode
)
This commit is contained in:
parent
f1224f62b4
commit
356565a0b4
@ -396,7 +396,7 @@ class FindReplaceNBT(QtGui.QWidget, Ui_findNBTWidget):
|
|||||||
elif tag.isList():
|
elif tag.isList():
|
||||||
value = "List" # describeList
|
value = "List" # describeList
|
||||||
else:
|
else:
|
||||||
value = str(tag.value)
|
value = unicode(tag.value)
|
||||||
|
|
||||||
return str(name_or_index), path, value
|
return str(name_or_index), path, value
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user