summaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorcclauss <cclauss@bluewin.ch>2018-10-16 06:57:41 +0200
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2018-10-17 07:31:25 +0200
commit83e4533a71c5c78278e9763552a5e5f1806473ee (patch)
tree0f7d46cd08d3f9b9a03c24235503daf9fbe7900f /fuzz
parent3064b55134434a0b2850f07eff57120f35bb269a (diff)
downloadopenssl-new-83e4533a71c5c78278e9763552a5e5f1806473ee.tar.gz
print() is a function in Python 3
CLA: trivial Discovered via #7410 @ https://travis-ci.org/openssl/openssl/jobs/442003489#L440 Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/7403)
Diffstat (limited to 'fuzz')
-rwxr-xr-xfuzz/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/helper.py b/fuzz/helper.py
index f5f9d77daa..889af30859 100755
--- a/fuzz/helper.py
+++ b/fuzz/helper.py
@@ -45,7 +45,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__":