Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cwl_utils/image_puller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading