Skip to content

Commit 4e6963d

Browse files
committed
boot-qemu.py: Add quotes around file in error
To make it clear this is the file utility, not an actual file. Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent 0008bf4 commit 4e6963d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

boot-qemu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def guess_arch(kernel_arg):
684684

685685
if not (file := shutil.which('file')):
686686
raise RuntimeError(
687-
'Architecture was not provided and file is not installed!')
687+
"Architecture was not provided and 'file' is not installed!")
688688

689689
# Get output of file
690690
file_out = subprocess.run([file, vmlinux],

0 commit comments

Comments
 (0)