From c4880d8c4fd5c461edd615166f11c6c4da88b625 Mon Sep 17 00:00:00 2001 From: pseusys Date: Tue, 28 Feb 2023 23:04:22 +0100 Subject: [PATCH] merge error fixed --- sources/manager_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/manager_file.py b/sources/manager_file.py index 5469eb9..28041b6 100644 --- a/sources/manager_file.py +++ b/sources/manager_file.py @@ -30,7 +30,7 @@ class FileManager: :param file: Localization file path, related to current file (in sources root). """ with open(join(dirname(__file__), file), encoding="utf-8") as config_file: - data = load(config_file) + data = load_json(config_file) FileManager._LOCALIZATION = data[EM.LOCALE] @staticmethod