diff options
Diffstat (limited to 'test/Progress')
-rw-r--r-- | test/Progress/multi_target_fixture/SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Progress/multi_target_fixture/SConstruct b/test/Progress/multi_target_fixture/SConstruct index 646217e..b164170 100644 --- a/test/Progress/multi_target_fixture/SConstruct +++ b/test/Progress/multi_target_fixture/SConstruct @@ -1,7 +1,8 @@ +import SCons class ProgressTest: def __call__(self, node): - if node.get_state() == 2: + if node.get_state() == SCons.Node.executing: print(node) env = Environment(tools=[]) |