Fix useless use of f-string

This commit is contained in:
Marcus Holland-Moritz 2023-07-09 15:38:43 +02:00
parent 1d96ef6d8f
commit 7fe0f8c979

View File

@ -50,7 +50,7 @@ with open(image, "rb") as image:
"<6sBB32s8sLHHQ", header
)
if ident != b"DWARFS":
print(f"error: expected dwarfs header")
print("error: expected dwarfs header")
raise SystemExit(1)
if sectype not in sectypes:
print(f"error: unexpected section type ({sectype})")