Skip to content

Commit 2a699ad

Browse files
authored
Merge pull request #47 from thbaumann/main
fix issue 46
2 parents 8d1e22b + b756bd8 commit 2a699ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgserviceparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def full_config(conf_file_path: Optional[Path] = None) -> configparser.ConfigPar
6060
if not conf_file_path.exists():
6161
raise ServiceFileNotFound(pg_service_filepath=conf_file_path)
6262

63-
config = configparser.ConfigParser()
63+
config = configparser.ConfigParser(interpolation=None)
6464
config.read(conf_file_path)
6565
return config
6666

0 commit comments

Comments
 (0)