Skip to content

Commit ec4ee21

Browse files
committed
Fixed escaping problem.
1 parent fd9d872 commit ec4ee21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyEDAA/OutputFilter/Xilinx/PlaceDesign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ class SubPhase_PlacerReporting(SubPhaseWithChildren):
366366
@export
367367
class SubPhase_FinalPlacementCleanup(SubPhase):
368368
_START: ClassVar[Pattern] = compile(f"^Phase {MAJOR_MINOR} Final Placement Cleanup")
369-
_FINISH: ClassVar[Pattern] = compile("Time \(s\):")
369+
_FINISH: ClassVar[Pattern] = compile(r"Time \(s\):")
370370
_TIME: ClassVar[str] = None
371371

372372

0 commit comments

Comments
 (0)