Skip to content

Commit 7d48055

Browse files
kareefardidonn
authored andcommitted
Fix DRC Rosetta Conversion Bug (Magic -> TritonRoute) (#2037)
This bug also affects the DRC checker and may have caused false negatives.
1 parent d054702 commit 7d48055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/drc_rosetta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def magic_to_tcl_cmd(output, magic_input):
380380
@click.argument("magic_input")
381381
def magic_to_tr_cmd(output, magic_input):
382382
with open(output, "w") as f:
383-
magic_to_tr(open(magic_input).read(), f)
383+
magic_to_tr(open(magic_input), f)
384384

385385

386386
magic.add_command(magic_to_tr_cmd)

0 commit comments

Comments
 (0)