Skip to content

Commit

Permalink
Auto-fuzz: Fix indentation bug (#1311)
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <[email protected]>
  • Loading branch information
arthurscchan authored Nov 14, 2023
1 parent 13156e4 commit f645b0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/auto-fuzz/oss_fuzz_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ def copy_and_build_project(src_folder,
with open(out_log, "wb") as f:
f.write(out)

err_log = os.path.join(log_dir, "oss-fuzz.err")
with open(err_log, "wb") as f:
f.write(err)
err_log = os.path.join(log_dir, "oss-fuzz.err")
with open(err_log, "wb") as f:
f.write(err)

if b"Building fuzzers failed" in err:
return False
Expand Down

0 comments on commit f645b0d

Please sign in to comment.