pkgs/cli: Fix fstring interplolation

Closes: #4458
This commit is contained in:
a-kenji
2025-07-23 09:43:51 +02:00
parent cc69892e3b
commit f58a120db1

View File

@@ -191,7 +191,7 @@ class QemuVm:
start_time = time.time()
while time.time() - start_time < timeout_sec:
if self.process.poll() is not None:
msg = "VM failed to start. Qemu process exited with code {self.process.returncode}"
msg = f"VM failed to start. Qemu process exited with code {self.process.returncode}"
raise ClanError(msg)
if self.qmp_socket_file.exists():
break