Encode json files with UTF-8
This commit is contained in:
parent
f6e6ddc09d
commit
e46fc9d1d9
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue