Remove unused variable

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
Povilas Kanapickas 2024-03-08 23:46:22 +02:00
parent 59a1fa3942
commit a6e0092627

View File

@ -1200,8 +1200,8 @@ class Podman:
try: try:
exit_code = await p.wait() exit_code = await p.wait()
except asyncio.CancelledError as e: except asyncio.CancelledError:
log(f"Sending termination signal") log("Sending termination signal")
p.terminate() p.terminate()
try: try:
async with asyncio.timeout(10): async with asyncio.timeout(10):