[openssl-commits] [openssl] master update
matthias.st.pierre at ncp-e.com
matthias.st.pierre at ncp-e.com
Wed Oct 17 05:32:04 UTC 2018
The branch master has been updated
via 83e4533a71c5c78278e9763552a5e5f1806473ee (commit)
from 3064b55134434a0b2850f07eff57120f35bb269a (commit)
- Log -----------------------------------------------------------------
commit 83e4533a71c5c78278e9763552a5e5f1806473ee
Author: cclauss <cclauss at bluewin.ch>
Date: Tue Oct 16 06:57:41 2018 +0200
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 at oracle.com>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/7403)
-----------------------------------------------------------------------
Summary of changes:
fuzz/helper.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fuzz/helper.py b/fuzz/helper.py
index f5f9d77..889af30 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__":
More information about the openssl-commits
mailing list