Index: test/mac/gyptest-strip.py |
diff --git a/test/mac/gyptest-strip.py b/test/mac/gyptest-strip.py |
index a729521e18459b5bcad40c81a18794d040aa2b34..692c928f001ba118e681b14b22c363261fa28c0b 100755 |
--- a/test/mac/gyptest-strip.py |
+++ b/test/mac/gyptest-strip.py |
@@ -8,6 +8,8 @@ |
Verifies that stripping works. |
""" |
+from __future__ import print_function |
+ |
import TestGyp |
import TestMac |
@@ -33,7 +35,7 @@ if sys.platform == 'darwin': |
m = r.search(o) |
n = int(m.group(1)) |
if n != n_expected: |
- print 'Stripping: Expected %d symbols, got %d' % (n_expected, n) |
+ print('Stripping: Expected %d symbols, got %d' % (n_expected, n)) |
test.fail_test() |
# Starting with Xcode 5.0, clang adds an additional symbols to the compiled |