Commit 04eee7dd authored by Jan Kiene's avatar Jan Kiene
Browse files

fix type error

parent 59e95b81
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ def run_check(modes: list, out_formats: list, tests: list, run_fec: bool = True)
        proc = subprocess.Popen(cmd_no_fec, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        for c in iter(lambda: proc.stdout.read(1), b""):
            sys.stdout.buffer.write(c)
            f.write(c)
            f.write(c.decode("utf8"))
        proc.wait()

    if proc.returncode not in [0, 101]: