From 3b2f67ce4c32996d695b970de3a718eb68e72ec4 Mon Sep 17 00:00:00 2001 From: Daniel Schlatter Date: Fri, 10 Oct 2025 01:50:58 -0600 Subject: [PATCH] disable unneeded configparser interpolation that causes issues when %s are present in values (#198) --- games/baldursgate3/pak_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/baldursgate3/pak_parser.py b/games/baldursgate3/pak_parser.py index 7797df5..826e124 100644 --- a/games/baldursgate3/pak_parser.py +++ b/games/baldursgate3/pak_parser.py @@ -74,7 +74,7 @@ class BG3PakParser: force_reparse_metadata: bool, ) -> str: meta_ini = Path(mod.absolutePath()) / "meta.ini" - config = configparser.ConfigParser() + config = configparser.ConfigParser(interpolation=None) config.read(meta_ini, encoding="utf-8") try: if file.name.endswith("pak"):