Index: test/mac/gyptest-lto.py |
diff --git a/test/mac/gyptest-lto.py b/test/mac/gyptest-lto.py |
index 5171544750525991dbc56c0fc9ac7ab266db21da..9699d5cc23a7348ef8637f20dd840b489015e95a 100644 |
--- a/test/mac/gyptest-lto.py |
+++ b/test/mac/gyptest-lto.py |
@@ -8,6 +8,8 @@ |
Verifies that LTO flags work. |
""" |
+from __future__ import print_function |
+ |
import TestGyp |
import os |
@@ -44,7 +46,7 @@ if sys.platform == 'darwin': |
elif ': LLVM bit-code ' in o: |
objtype = 'llvm' |
if objtype != t_expected: |
- print 'Expected %s, got %s' % (t_expected, objtype) |
+ print('Expected %s, got %s' % (t_expected, objtype)) |
test.fail_test() |
ObjType(ObjPath('cfile', 'lto'), 'llvm') |