We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a14d0e commit 35fe382Copy full SHA for 35fe382
1 file changed
module/common/configuration.py
@@ -58,7 +58,8 @@ def open_config_file(config_file):
58
do_error_exit("ERROR: Config file not defined.")
59
60
# setup config parser and read config
61
- config_handler = configparser.ConfigParser(strict=True, allow_no_value=True, empty_lines_in_values=False)
+ config_handler = configparser.ConfigParser(strict=True, allow_no_value=True,
62
+ empty_lines_in_values=False, interpolation=None)
63
64
# noinspection PyBroadException
65
try:
0 commit comments