Fix TAG_String value returned as str (should be unicode)

This commit is contained in:
David Vierra 2016-09-22 20:01:11 -10:00
parent f1224f62b4
commit 356565a0b4

View File

@ -396,7 +396,7 @@ class FindReplaceNBT(QtGui.QWidget, Ui_findNBTWidget):
elif tag.isList():
value = "List" # describeList
else:
value = str(tag.value)
value = unicode(tag.value)
return str(name_or_index), path, value