diff options
Diffstat (limited to 'test/sconsign/ghost-entries.py')
-rw-r--r-- | test/sconsign/ghost-entries.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sconsign/ghost-entries.py b/test/sconsign/ghost-entries.py index 2f8ee73..46916ca 100644 --- a/test/sconsign/ghost-entries.py +++ b/test/sconsign/ghost-entries.py @@ -89,7 +89,7 @@ test.run(arguments="-Q go case=2") test.write('SConstruct', """\ Command("d/current.txt", [], [Touch("$TARGET")]) -if ARGUMENTS.has_key('pass') and ARGUMENTS['pass'] == '1': +if 'pass' in ARGUMENTS and ARGUMENTS['pass'] == '1': Command("d/obsolete.txt", [], [Touch("$TARGET")]) Command("installer.exe", ['d'], [Touch("$TARGET")]) """) |