Skip to content

Commit

Permalink
Fix TAG_String value returned as str (should be unicode)
Browse files Browse the repository at this point in the history
  • Loading branch information
codewarrior0 committed Sep 23, 2016
1 parent f1224f6 commit 356565a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcedit2/editorcommands/find_replace/nbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def _findTag(name_or_index, tag, path):
elif tag.isList():
value = "List" # describeList
else:
value = str(tag.value)
value = unicode(tag.value)

return str(name_or_index), path, value

Expand Down

0 comments on commit 356565a

Please sign in to comment.