Skip to content

Commit

Permalink
Fix DRC Rosetta Conversion Bug (Magic -> TritonRoute) (#2037)
Browse files Browse the repository at this point in the history
This bug also affects the DRC checker and may have caused false negatives.
  • Loading branch information
kareefardi authored Nov 10, 2023
1 parent f4f8dad commit 1d46ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/drc_rosetta.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def magic_to_tcl_cmd(output, magic_input):
@click.argument("magic_input")
def magic_to_tr_cmd(output, magic_input):
with open(output, "w") as f:
magic_to_tr(open(magic_input).read(), f)
magic_to_tr(open(magic_input), f)


magic.add_command(magic_to_tr_cmd)
Expand Down

0 comments on commit 1d46ea5

Please sign in to comment.