fix: make updatei18nKeysType.py work with python 3

pull/2585/head
William Grant 2 years ago
parent 8f426a5b53
commit 3232456864

@ -19,7 +19,7 @@ with open(EN_FILE,'r') as jsonFile:
data = json.load(jsonFile)
keys = data.keys()
stringToWrite += json.dumps(keys, sort_keys=True).replace(',', '\n |').replace('"', '\'')[1:-1]
stringToWrite += json.dumps(list(keys), sort_keys=True).replace(',', '\n |').replace('"', '\'')[1:-1]
stringToWrite += ';\n'

Loading…
Cancel
Save