Index: test/determinism/gyptest-solibs.py |
diff --git a/test/determinism/gyptest-solibs.py b/test/determinism/gyptest-solibs.py |
index de9588db1cf24e2dcd5c65ba3b9cb50a0a8f6050..a9c312573bd804bb9676e9c15f52bf5c70d4dc75 100644 |
--- a/test/determinism/gyptest-solibs.py |
+++ b/test/determinism/gyptest-solibs.py |
@@ -9,6 +9,8 @@ Verifies builds are the same even with different PYTHONHASHSEEDs. |
Tests all_targets, implicit_deps and solibs. |
""" |
+from __future__ import print_function |
+ |
import os |
import sys |
import TestGyp |
@@ -28,7 +30,7 @@ if test.format == 'ninja': |
if base1 != contents1: |
test.fail_test() |
if base2 != contents2: |
- print base2 |
+ print(base2) |
test.fail_test() |
del os.environ["PYTHONHASHSEED"] |