test/initrd: remove unneeded f-string
No interpolation was done via this f-string, remove it.
This commit is contained in:
parent
d4ebbb821a
commit
8ad2eef13f
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ class Initrd:
|
|||
with self.open() as image:
|
||||
hdr = read_header(image)
|
||||
if hdr.startswith(b'\x71\xc7') or hdr == b'070701':
|
||||
cmd = f"cpio --extract --quiet --to-stdout -- 'early_cpio'"
|
||||
cmd = "cpio --extract --quiet --to-stdout -- 'early_cpio'"
|
||||
data = self.run(cmd, image)
|
||||
self.early_cpio = data == '1'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue