summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bestwalter <oliver@bestwalter.de>2017-08-13 11:56:39 +0200
committerGitHub <noreply@github.com>2017-08-13 11:56:39 +0200
commit712c681f83d2d2e983b6807bf7fd0353ffa54787 (patch)
treeaf32a4557976853747f369a882ca0df2f5ccf4bf
parent67e88f629c7bac226ff6fe3ad312277c4d3733d7 (diff)
parent3cdb40407a70dd150dd3dd60c3573d5a8375f32b (diff)
downloadtox-git-2.8.0rc1.tar.gz
Merge pull request #574 from Avira/master2.8.0rc1
fix up #521: add missing pass of arg to underlying function.
-rwxr-xr-xtox/config.py2
1 files changed, 1 insertions, 1 deletions
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):