From: cclauss Date: Tue, 16 Oct 2018 04:57:41 +0000 (+0200) Subject: print() is a function in Python 3 X-Git-Tag: OpenSSL_1_1_1a~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=391f76f1a5869c228e75b4435656819b4dfb43a9;p=openssl 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 Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/7403) (cherry picked from commit 83e4533a71c5c78278e9763552a5e5f1806473ee) --- 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__":