We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7fd169 commit 29676fcCopy full SHA for 29676fc
src/report_compiler.py
@@ -107,7 +107,7 @@ def __init__(self, logger):
107
self.pgservices = {}
108
pgservicefile = os.getenv("PGSERVICEFILE", os.path.expanduser("~/.pg_service.conf"))
109
if os.path.isfile(pgservicefile):
110
- config = configparser.ConfigParser()
+ config = configparser.ConfigParser(interpolation=None)
111
config.read(pgservicefile)
112
for section in config.sections():
113
self.pgservices[section] = dict(config.items(section))
0 commit comments