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:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user