Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: use print() function on both Python 2 and 3 #24493

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
deps: use print() function on both Python 2 and 3
@jasnell @refack This change was merged into upstream in openssl/openssl#7409
cclauss authored Nov 19, 2018

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 0406685250d01ecce0c96df10d10d100573ebc2a
3 changes: 2 additions & 1 deletion deps/openssl/openssl/fuzz/helper.py
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
fuzzer.py <fuzzer> <extra fuzzer arguments>
"""
from __future__ import print_function

import os
import subprocess
@@ -45,7 +46,7 @@ def main():

cmd = ([os.path.abspath(os.path.join(THIS_DIR, FUZZER))] + sys.argv[2:]
+ ["-artifact_prefix=" + corpora[1] + "/"] + corpora)
print " ".join(cmd)
print(" ".join(cmd))
subprocess.call(cmd)

if __name__ == "__main__":