Use utf-8 everywhere

This commit is contained in:
kramo
2023-04-02 07:28:04 +02:00
parent b511ce22b7
commit 960eaa1949
7 changed files with 10 additions and 10 deletions

View File

@@ -33,7 +33,7 @@ def get_games(parent_widget, game_ids=None):
game_files = games_dir.iterdir()
for game in game_files:
data = json.loads(game.read_text())
data = json.loads(game.read_text("utf-8"))
games[data["game_id"]] = data
return games