Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Tools / Scripts / webkitpy / common / version_check.py
index 830cb8b..cf5392a 100644 (file)
@@ -29,5 +29,5 @@
 import sys
 
 if sys.version < '2.7' or sys.version >= '2.8':
-    print >> sys.stderr, "Unsupported Python version: webkitpy requires 2.7.x, and you're running %s." % sys.version.split()[0]
+    sys.stderr.write("Unsupported Python version: webkitpy requires 2.7.x, and you're running %s.\n" % sys.version.split()[0])
     sys.exit(1)