Parsing configuration file fails when a percent is present
The configparser
module raise when percent %
is present in the configuration file because of values interpolation.
It's possible to disable the interpolation of values by passing the interpolation=None
option to the object creation.