Skip to content

Commit 3b2f67c

Browse files
authored
disable unneeded configparser interpolation that causes issues when %s are present in values (#198)
1 parent 003d313 commit 3b2f67c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

games/baldursgate3/pak_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _get_metadata_for_file(
7474
force_reparse_metadata: bool,
7575
) -> str:
7676
meta_ini = Path(mod.absolutePath()) / "meta.ini"
77-
config = configparser.ConfigParser()
77+
config = configparser.ConfigParser(interpolation=None)
7878
config.read(meta_ini, encoding="utf-8")
7979
try:
8080
if file.name.endswith("pak"):

0 commit comments

Comments
 (0)