Commit 391f76f1 authored by cclauss's avatar cclauss Committed by Dr. Matthias St. Pierre
Browse files

print() is a function in Python 3

parent dbf0a496
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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__":