From 73264af2be0c1e1d82bf87fec7f377e491488408 Mon Sep 17 00:00:00 2001 From: mARTin-B78 Date: Tue, 9 Jun 2026 15:38:39 +0200 Subject: [PATCH] fix SyntaxWarning: escape backslash in SIGQUIT docstring Co-Authored-By: Claude Sonnet 4.6 --- linux/blitztext/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/blitztext/daemon.py b/linux/blitztext/daemon.py index a8941ae..34079c9 100644 --- a/linux/blitztext/daemon.py +++ b/linux/blitztext/daemon.py @@ -158,7 +158,7 @@ class Daemon: self._emit("idle", None, "Ready") def _install_freeze_diagnostic(self) -> None: - """Register SIGQUIT (Ctrl+\ or kill -QUIT) to dump all thread stacks. + """Register SIGQUIT (Ctrl+\\ or kill -QUIT) to dump all thread stacks. When the system appears frozen, run: kill -QUIT $(pgrep -f blitztext)