The branch OpenSSL_1_1_1-stable has been updated
       via  391f76f1a5869c228e75b4435656819b4dfb43a9 (commit)
      from  dbf0a496252b91c1fe52c9129dc0a5361a4589a8 (commit)


- Log -----------------------------------------------------------------
commit 391f76f1a5869c228e75b4435656819b4dfb43a9
Author: cclauss <[email protected]>
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 <[email protected]>
    Reviewed-by: Matthias St. Pierre <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/7403)
    
    (cherry picked from commit 83e4533a71c5c78278e9763552a5e5f1806473ee)

-----------------------------------------------------------------------

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__":
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to