diff options
author | William Deegan <bill@baddogconsulting.com> | 2021-04-10 17:23:19 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2021-04-10 17:23:19 (GMT) |
commit | cef62d1719abb82f32a50d0c51aed03ca7f5cce0 (patch) | |
tree | bbd86b0baf250b330131d3fc2f29b95ddfb45d3a /test/option | |
parent | ca77029e10482dc56388a56993f557c5a9eaf7ac (diff) | |
download | SCons-cef62d1719abb82f32a50d0c51aed03ca7f5cce0.zip SCons-cef62d1719abb82f32a50d0c51aed03ca7f5cce0.tar.gz SCons-cef62d1719abb82f32a50d0c51aed03ca7f5cce0.tar.bz2 |
Address mwichmann's feedback
Diffstat (limited to 'test/option')
-rw-r--r-- | test/option/fixture/SConstruct__experimental | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/option/fixture/SConstruct__experimental b/test/option/fixture/SConstruct__experimental index 3641bb0..aa5f4c3 100644 --- a/test/option/fixture/SConstruct__experimental +++ b/test/option/fixture/SConstruct__experimental @@ -1,6 +1,6 @@ DefaultEnvironment(tools=[]) env = Environment(tools=[]) -exp=GetOption('experimental') -print("Experimental=%s"%exp) -print("All=%s"%('all' in exp))
\ No newline at end of file +exp = GetOption('experimental') +print("Experimental=%s" % exp) +print("All=%s" % ('all' in exp)) |