Encode json files with UTF-8

This commit is contained in:
Hirochika Matsumoto 2021-09-30 00:11:14 +09:00
parent f6e6ddc09d
commit e46fc9d1d9
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
import sys
import json
crate = json.load(open(sys.argv[1]))
crate = json.load(open(sys.argv[1], encoding="utf-8"))
def get_local_item(item_id):