Commit ef645d0a authored by Jan Kiene's avatar Jan Kiene
Browse files

fix f strings

parent cf0f0aa4
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -765,7 +765,8 @@ def simulate(
        cmd_opts[2] = f"{dut_out_dir}/{netsim_outfile}"  # dut_out_file

    netsim_cmd = netsim + cmd_opts
    log_dbg_msg(f"netsim command:\n{" ".join(netsim_cmd)}")
    netsim_cmd_str = " ".join(netsim_cmd)
    log_dbg_msg(f"netsim command:\n{netsim_cmd_str}")
    run(netsim_cmd, check=False)


@@ -817,7 +818,8 @@ def error_insertion(
        cmd_opts[-1] = f"{dut_out_dir}/{eid_xor_outfile}"  # ref_out_file

    eid_cmd = eid_xor + cmd_opts
    log_dbg_msg(f"eid-xor command:\n{" ".join(eid_cmd)}")
    eid_cmd_str = " ".join(eid_cmd)
    log_dbg_msg(f"eid-xor command:\n{eid_cmd_str}")
    run(eid_xor + cmd_opts, check=False)