summaryrefslogtreecommitdiff
path: root/deps/openssl/openssl/fuzz/helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/openssl/openssl/fuzz/helper.py')
-rwxr-xr-xdeps/openssl/openssl/fuzz/helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/openssl/openssl/fuzz/helper.py b/deps/openssl/openssl/fuzz/helper.py
index f5f9d77daa..e83ea00c00 100755
--- a/deps/openssl/openssl/fuzz/helper.py
+++ b/deps/openssl/openssl/fuzz/helper.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
#
-# Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
+# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the OpenSSL license (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
@@ -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__":