scripts: build-qemu: Fix message when creating config file

The message is missing an f-string specifier. Add it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-06-08 05:32:30 -06:00
parent 7665482b11
commit 057ec035cf

View File

@@ -34,7 +34,7 @@ class Helper:
self.settings = configparser.ConfigParser()
fname = f'{os.getenv("HOME")}/.u_boot_qemu'
if not os.path.exists(fname):
print('No config file found: {fname}\nCreating one...\n')
print(f'No config file found: {fname}\nCreating one...\n')
tools.write_file(fname, '''# U-Boot QEMU-scripts config
[DEFAULT]