Remove unused f-string

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
Povilas Kanapickas 2024-03-08 23:46:20 +02:00
parent b0da6f82d3
commit 36139fb282

View File

@ -1207,7 +1207,7 @@ class Podman:
async with asyncio.timeout(10):
exit_code = await p.wait()
except TimeoutError:
log(f"container did not shut down after 10 seconds, killing")
log("container did not shut down after 10 seconds, killing")
p.kill()
exit_code = await p.wait()