Skip to content

Commit

Permalink
Fix "SyntaxWarning: invalid escape sequence '\d'"
Browse files Browse the repository at this point in the history
  • Loading branch information
knot126 committed Jun 9, 2024
1 parent 90ab5ef commit 082e79d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/croc1/health_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def run_strat(strat, strat_path, csv_path, output_dir, counts):
counts["disassembler"]["failed"] += 1
return

mo = re.search("Found (\d+) strat\(s\) in", result.stdout)
mo = re.search("Found (\\d+) strat\\(s\\) in", result.stdout)
if not mo:
print("Invalid output!")
counts["reconstructor"]["failed"] += 1
Expand Down

0 comments on commit 082e79d

Please sign in to comment.