From 4c21c7a6f05284febc99da4bc88b973359b6a529 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Wed, 25 Sep 2024 21:34:54 +0200 Subject: [PATCH] fix: incorrect fmt type --- qubes/tools/qmemmand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/tools/qmemmand.py b/qubes/tools/qmemmand.py index 1f3a520e7..df61f172f 100644 --- a/qubes/tools/qmemmand.py +++ b/qubes/tools/qmemmand.py @@ -163,7 +163,7 @@ def meminfo_changed(self, domain_id): system_state.refresh_meminfo(domain_id, untrusted_meminfo_key) except: # pylint: disable=bare-except - self.log.exception('Updating meminfo for %d failed', domain_id) + self.log.exception('Updating meminfo for %s failed', domain_id) self.log.debug('global_lock released') def watch_loop(self):