From a1b6764e7594b1fe736b2da8f1dab8ee3bdc6f5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Pierret=20=28fepitre=29?= Date: Fri, 3 May 2024 12:17:14 +0200 Subject: [PATCH] qvm-start-daemon: fix TypeError in message --- qubesadmin/tools/qvm_start_daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubesadmin/tools/qvm_start_daemon.py b/qubesadmin/tools/qvm_start_daemon.py index f7a9e632..c551deb3 100644 --- a/qubesadmin/tools/qvm_start_daemon.py +++ b/qubesadmin/tools/qvm_start_daemon.py @@ -788,7 +788,7 @@ def cleanup_pacat_process(self, xid): "Sent SIGTERM signal to pacat-simple-vchan process %d", pid) except OSError: log.error("Failed to send SIGTERM signal for the" - " pacat-simple-vchan with xid of %d", xid) + " pacat-simple-vchan with xid of %s", xid) os.unlink(config_file) def register_events(self, events):