From 392c62a03c0d63e323a9aae55bc9aff87454db16 Mon Sep 17 00:00:00 2001 From: Vadim Zyamalov Date: Sun, 3 May 2026 19:22:57 +0300 Subject: [PATCH] New profile system aloows for non-ascii characters (#470) --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 82829df..d6d1546 100644 --- a/install.py +++ b/install.py @@ -99,7 +99,7 @@ def _get_default_profile_folder(firefox_root): print(f"Reading {config_path}...") config_parser = ConfigParser(strict=False) - config_parser.read(config_path) + config_parser.read(config_path, encoding = "utf8") path = None for section in config_parser.sections():