Make sure we use the libctx when fetching a MAC
[openssl.git] / fuzz / helper.py
index 75a9e12f0a35cef061173a167c7bfb93d0cb1198..9185b17228bb0d091e50091d1d4eb3247f11f95c 100755 (executable)
@@ -1,4 +1,11 @@
 #!/usr/bin/python
+#
+# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License").  You may not use
+# this file except in compliance with the License.  You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
 
 """Fuzzing helper, creates and uses corpus/crash directories.
 
@@ -38,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__":