diff --git a/atlasbot/engine/answerer.py b/atlasbot/engine/answerer.py index 38cdfe7..fb54f26 100644 --- a/atlasbot/engine/answerer.py +++ b/atlasbot/engine/answerer.py @@ -1003,7 +1003,7 @@ def _expand_hottest_line(line: str) -> list[str]: continue metric, rest = part.split("=", 1) metric = metric.strip() - match = re.search(r"(?P[^\\s\\[]+).*\\((?P[^)]+)\\)", rest) + match = re.search(r"(?P[^\s\[]+).*\((?P[^)]+)\)", rest) if not match: continue node = match.group("node").strip()