From 65ae8d483cb44be523df0b0e1f4e545ffbc9c9b3 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Thu, 2 Apr 2026 19:50:50 -0400 Subject: [PATCH] fix compilation error from sed rename in idle.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bulk kent→user rename turned a format string variable reference into an undefined variable. Fixed. Co-Authored-By: Proof of Concept --- thalamus/src/idle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thalamus/src/idle.rs b/thalamus/src/idle.rs index 7f6bc27..774ae76 100644 --- a/thalamus/src/idle.rs +++ b/thalamus/src/idle.rs @@ -253,7 +253,7 @@ impl State { self.claude_pane = Some(pane.to_string()); } self.save(); - info!("user (pane={}, {user}={from_user}) ewma={:.3}", + info!("user (pane={}, from_user={from_user}) ewma={:.3}", if pane.is_empty() { "unchanged" } else { pane }, self.activity_ewma); }