fix % symbol breaking config

This commit is contained in:
Marek Vigaš 2021-12-31 14:14:17 +01:00
parent d173b04cd2
commit c7b4835468
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ def _load_config_from_env(config_p):
def _load_config(): def _load_config():
"""Load the configuration and return a ConfigParser instance.""" """Load the configuration and return a ConfigParser instance."""
config_p = configparser.ConfigParser() config_p = configparser.ConfigParser(interpolation=None)
# options are case-sensitive # options are case-sensitive
config_p.optionxform = str config_p.optionxform = str