CI: Fix typo in QEMU log filename output

Message ID 20250423085211.1462083-1-amikan@ilbers.de
State New
Headers show
Series CI: Fix typo in QEMU log filename output | expand

Commit Message

Anton Mikanovich April 23, 2025, 8:52 a.m. UTC
There was a classic vim typo in 9b622518e.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/cibuilder.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/testsuite/cibuilder.py b/testsuite/cibuilder.py
index e726ba87..3e6921d8 100755
--- a/testsuite/cibuilder.py
+++ b/testsuite/cibuilder.py
@@ -553,7 +553,7 @@  class CIBuilder(Test):
         need_sb_cleanup = start_vm.sb_copy_vars(cmdline)
 
         self.log.info(f"QEMU boot line:\n{' '.join(cmdline)}")
-        self.log.info(f"QEMU boot log:\ni{boot_log}")
+        self.log.info(f"QEMU boot log:\n{boot_log}")
 
         p1 = subprocess.Popen(
             f"exec {' '.join(cmdline)}",