Skip to content

Commit

Permalink
Fix an import.
Browse files Browse the repository at this point in the history
  • Loading branch information
wuestholz committed Apr 29, 2024
1 parent dd65843 commit 4042f74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run-campaigns.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from argparse import ArgumentParser
from json import dumps, loads
import subprocess
from subprocess import Popen, TimeoutExpired
import re
import time
import tempfile
Expand Down Expand Up @@ -198,7 +198,7 @@ def process_all_tasks(tasks):
in_file.write(fuzzer_input)
in_file.flush()
in_file.seek(0)
proc = subprocess.Popen(
proc = Popen(
exe,
stdin=in_file,
stdout=out_file,
Expand All @@ -211,7 +211,7 @@ def process_all_tasks(tasks):
or fuzzer_name == "hybrid-echidna"
or fuzzer_name == "ityfuzz"
):
proc = subprocess.Popen(
proc = Popen(
" ".join(exe),
stdout=out_file,
stderr=out_file,
Expand Down

0 comments on commit 4042f74

Please sign in to comment.