From f0fc7831ce04863b1313f6198670d77c8040a1bd Mon Sep 17 00:00:00 2001 From: Sameeul Samee Date: Mon, 9 Dec 2024 15:28:21 -0500 Subject: [PATCH] Replace ":" in image name with "_" --- cwl_utils/image_puller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwl_utils/image_puller.py b/cwl_utils/image_puller.py index beec3c31..5fae0781 100644 --- a/cwl_utils/image_puller.py +++ b/cwl_utils/image_puller.py @@ -89,7 +89,7 @@ def save_docker_image(self) -> None: class SingularityImagePuller(ImagePuller): """Pull docker image with Singularity.""" - CHARS_TO_REPLACE = ["/"] + CHARS_TO_REPLACE = ["/", ":"] NEW_CHAR = "_" def get_image_name(self) -> str: