From 50627d375cabad1fdda001ba7b1933a2c46e941d Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Tue, 22 Oct 2024 19:07:09 +0300 Subject: [PATCH] Fix a small typo --- dangerzone/isolation_provider/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dangerzone/isolation_provider/container.py b/dangerzone/isolation_provider/container.py index 59b4958..94f894d 100644 --- a/dangerzone/isolation_provider/container.py +++ b/dangerzone/isolation_provider/container.py @@ -248,7 +248,7 @@ class Container(IsolationProvider): else: msg = ( f"{Container.CONTAINER_NAME} images found, but IDs do not match." - f"Found: {found_image_id}, Expected: {','.join(expected_image_ids)}" + f" Found: {found_image_id}, Expected: {','.join(expected_image_ids)}" ) if raise_on_error: raise ImageNotPresentException(msg)