Merge pull request 'pkgs/cli: Fix fstring interplolation' (#4459) from kenji/ke-fix-typo into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4459
This commit is contained in:
Kenji Berthold
2025-07-23 07:55:04 +00:00

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