1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 07:30:47 +05:30

New profile system aloows for non-ascii characters (#470)

This commit is contained in:
Vadim Zyamalov
2026-05-03 19:22:57 +03:00
committed by GitHub
parent 0bc76714a9
commit 392c62a03c
+1 -1
View File
@@ -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():