diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-05-28 20:27:40 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-05-28 20:27:40 (GMT) |
commit | fd48ebfeb806014059322b7905217118a4841c2e (patch) | |
tree | b78077579ca417f1bfcf2f11125afe008d9d0b57 | |
parent | 0306aa52c15a5196afbefe57023c0062aa7d1c3f (diff) | |
download | SCons-fd48ebfeb806014059322b7905217118a4841c2e.zip SCons-fd48ebfeb806014059322b7905217118a4841c2e.tar.gz SCons-fd48ebfeb806014059322b7905217118a4841c2e.tar.bz2 |
PEP8 fix
-rw-r--r-- | QMTest/TestSCons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py index b24ef93..bd23ce6 100644 --- a/QMTest/TestSCons.py +++ b/QMTest/TestSCons.py @@ -258,7 +258,7 @@ class TestSCons(TestCommon): # TERM can cause test failures due to control chars in prompts etc. os.environ['TERM'] = 'dumb' - self.ignore_python_version = kw.get('ignore_python_version',1) + self.ignore_python_version = kw.get('ignore_python_version', 1) if kw.get('ignore_python_version', -1) != -1: del kw['ignore_python_version'] |