Index: test/win/gyptest-command-quote.py |
diff --git a/test/win/gyptest-command-quote.py b/test/win/gyptest-command-quote.py |
index bd93ac5e922f393dc0f6fae49b98d3e5fca4a78e..656a69da5302d87a2a3fa603af3cd57462fc1fef 100644 |
--- a/test/win/gyptest-command-quote.py |
+++ b/test/win/gyptest-command-quote.py |
@@ -12,12 +12,14 @@ application in the path. Specifically, this means not quoting something like |
than calling "x.bat". |
""" |
+from __future__ import print_function |
+ |
import TestGyp |
import sys |
if sys.platform == 'win32': |
- print "This test is currently disabled: https://crbug.com/483696." |
+ print("This test is currently disabled: https://crbug.com/483696.") |
sys.exit(0) |
test = TestGyp.TestGyp(formats=['msvs', 'ninja']) |