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

Commit

Permalink
Merge pull request #13 from ishanjain28/master
Browse files Browse the repository at this point in the history
Added Python3 Support in SConstruct
  • Loading branch information
derat committed Nov 5, 2017
2 parents e98f8fd + 08e7151 commit e4cf996
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 e4cf996

Please sign in to comment.