From 93532c26223aab9f7c77dc113e916a37ee57c1bc Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sun, 1 Feb 2026 14:45:10 -0300 Subject: [PATCH] atlasbot: fix hottest line parsing --- atlasbot/engine/answerer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()