Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Update SConstruct
Browse files Browse the repository at this point in the history
  • Loading branch information
ishanjain28 authored Oct 13, 2017
1 parent e98f8fd commit 08e7151
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def run_tests(target, source, env):
[stdout, stderr] = proc.communicate()
proc.wait()
if proc.returncode == 0:
print '%s OK' % padded_name
print('%s OK' % padded_name)
else:
print "%s FAILED\n" % padded_name
print stdout
print("%s FAILED\n" % padded_name)
print(stdout)

run_tests_builder = Builder(action=run_tests)

Expand Down

0 comments on commit 08e7151

Please sign in to comment.