Always disable interpolation for ini parsers.

This commit is contained in:
Jussi Pakkanen 2020-01-27 17:55:48 +02:00
parent 8cb2cbaed2
commit 7375eaa263
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ def unpack(sproj, branch, outdir):
subprocess.check_call(['git', 'clone', '-b', branch, 'https://github.com/mesonbuild/{}.git'.format(sproj), outdir])
usfile = os.path.join(outdir, 'upstream.wrap')
assert(os.path.isfile(usfile))
config = configparser.ConfigParser()
config = configparser.ConfigParser(interpolation=None)
config.read(usfile)
us_url = config['wrap-file']['source_url']
us = urllib.request.urlopen(us_url, timeout=req_timeout).read()

View File

@ -228,7 +228,7 @@ class UserFeatureOption(UserComboOption):
def load_configs(filenames: T.List[str]) -> configparser.ConfigParser:
"""Load configuration files from a named subdirectory."""
config = configparser.ConfigParser()
config = configparser.ConfigParser(interpolation=None)
config.read(filenames)
return config

View File

@ -105,7 +105,7 @@ def parse_patch_url(patch_url):
return arr[-3], int(arr[-2])
def get_current_version(wrapfile):
cp = configparser.ConfigParser()
cp = configparser.ConfigParser(interpolation=None)
cp.read(wrapfile)
cp = cp['wrap-file']
patch_url = cp['patch_url']