diff options
author | Eugene Yunak <eugene@yunak.eu> | 2014-06-18 12:53:27 +0300 |
---|---|---|
committer | Eugene Yunak <eugene@yunak.eu> | 2014-06-18 12:53:27 +0300 |
commit | e9011ab3375632098a7d8877927b746b407c41e7 (patch) | |
tree | 8fe78b552fd2e3a143904cf7c531ab1d04c12c08 /tox | |
parent | 37947b687b27bd8e0a8921d22502629b240c6ecb (diff) | |
download | tox-e9011ab3375632098a7d8877927b746b407c41e7.tar.gz |
skip_missing_interpreters: fix bool handling and add appropriate test, thanks hpk42@ for the tip!
Diffstat (limited to 'tox')
-rw-r--r-- | tox/_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/_config.py b/tox/_config.py index 45d626a..4f89d00 100644 --- a/tox/_config.py +++ b/tox/_config.py @@ -241,7 +241,7 @@ class parseini: if not config.option.skip_missing_interpreters: config.option.skip_missing_interpreters = \ - reader.getdefault(toxsection, "skip_missing_interpreters", None) + reader.getbool(toxsection, "skip_missing_interpreters", False) # determine indexserver dictionary config.indexserver = {'default': IndexServerConfig('default')} |