Disable interpolation of ConfigParser

This commit is contained in:
lukasprobst 2021-10-25 22:32:54 +02:00
parent fee12b3d9e
commit ec69e9ab4c
3 changed files with 5 additions and 2 deletions

View file

@ -25,6 +25,9 @@ ambiguous situations.
### Added ### Added
- A KIT IPD crawler - A KIT IPD crawler
### Removed
- Interpolation of ConfigParser
## 3.2.0 - 2021-08-04 ## 3.2.0 - 2021-08-04
### Added ### Added

View file

@ -1,4 +1,4 @@
Copyright 2019-2020 Garmelon, I-Al-Istannen, danstooamerican, pavelzw, TheChristophe, Scriptim Copyright 2019-2021 Garmelon, I-Al-Istannen, danstooamerican, pavelzw, TheChristophe, Scriptim, thelukasprobst
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in this software and associated documentation files (the "Software"), to deal in

View file

@ -15,7 +15,7 @@ from .transformer import RuleParseError
def load_config_parser(args: argparse.Namespace) -> configparser.ConfigParser: def load_config_parser(args: argparse.Namespace) -> configparser.ConfigParser:
log.explain_topic("Loading config") log.explain_topic("Loading config")
parser = configparser.ConfigParser() parser = configparser.ConfigParser(interpolation=None)
if args.command is None: if args.command is None:
log.explain("No CLI command specified, loading config from file") log.explain("No CLI command specified, loading config from file")