no interpolation should be done for the ini file

This commit is contained in:
lilydjwg 2020-02-28 15:53:56 +08:00
parent 374ef20ad5
commit 31f618e586

View file

@ -109,7 +109,7 @@ class Source:
def __init__(self, file, tries=1):
self.config = config = configparser.ConfigParser(
dict_type=dict, allow_no_value=True
dict_type=dict, allow_no_value=True, interpolation=None,
)
self.name = file.name
self.tries = tries