diff --git a/src/module/conf/config.py b/src/module/conf/config.py index 9090f1c4..1701582f 100644 --- a/src/module/conf/config.py +++ b/src/module/conf/config.py @@ -36,7 +36,7 @@ class Settings: if path is None: conf = DEFAULT_SETTINGS elif os.path.isfile(path): - with open(path, "r") as f: + with open(path, "r", encoding="utf-8") as f: conf = json.load(f) else: conf = self._create_config()