summaryrefslogtreecommitdiff
path: root/deps/v8/tools/release/check_clusterfuzz.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/release/check_clusterfuzz.py')
-rwxr-xr-xdeps/v8/tools/release/check_clusterfuzz.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/tools/release/check_clusterfuzz.py b/deps/v8/tools/release/check_clusterfuzz.py
index 8af835136b..021cd55286 100755
--- a/deps/v8/tools/release/check_clusterfuzz.py
+++ b/deps/v8/tools/release/check_clusterfuzz.py
@@ -13,6 +13,8 @@ written to public logs. Public automated callers of this script should
suppress stdout and stderr and only process contents of the results_file.
"""
+# for py2/py3 compatibility
+from __future__ import print_function
import argparse
import httplib
@@ -222,7 +224,7 @@ def Main():
with open(options.results_file, "w") as f:
f.write(json.dumps(results))
else:
- print results
+ print(results)
if __name__ == "__main__":