From 3cdb40407a70dd150dd3dd60c3573d5a8375f32b Mon Sep 17 00:00:00 2001 From: Oliver Bestwalter Date: Fri, 11 Aug 2017 16:39:43 +0200 Subject: fix up #521: add missing pass of arg to underlying function. --- tox/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tox/config.py') diff --git a/tox/config.py b/tox/config.py index 60f71fe8..a15b69bb 100755 --- a/tox/config.py +++ b/tox/config.py @@ -956,7 +956,7 @@ class SectionReader: return [x.strip() for x in s.split(sep) if x.strip()] def getdict(self, name, default=None, sep="\n", replace=True): - value = self.getstring(name, None) + value = self.getstring(name, None, replace=replace) return self._getdict(value, default=default, sep=sep) def getdict_setenv(self, name, default=None, sep="\n", replace=True): -- cgit v1.2.1