Skip to content

Commit 35fe382

Browse files
committed
disable interpolation from config parser #128
1 parent 6a14d0e commit 35fe382

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

module/common/configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def open_config_file(config_file):
5858
do_error_exit("ERROR: Config file not defined.")
5959

6060
# setup config parser and read config
61-
config_handler = configparser.ConfigParser(strict=True, allow_no_value=True, empty_lines_in_values=False)
61+
config_handler = configparser.ConfigParser(strict=True, allow_no_value=True,
62+
empty_lines_in_values=False, interpolation=None)
6263

6364
# noinspection PyBroadException
6465
try:

0 commit comments

Comments
 (0)