Skip to content

Commit f0fc783

Browse files
sameeulmr-c
authored andcommitted
Replace ":" in image name with "_"
1 parent 0fe3ca6 commit f0fc783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwl_utils/image_puller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def save_docker_image(self) -> None:
8989
class SingularityImagePuller(ImagePuller):
9090
"""Pull docker image with Singularity."""
9191

92-
CHARS_TO_REPLACE = ["/"]
92+
CHARS_TO_REPLACE = ["/", ":"]
9393
NEW_CHAR = "_"
9494

9595
def get_image_name(self) -> str:

0 commit comments

Comments
 (0)