Skip to content

Commit 99fb3c6

Browse files
authored
Merge pull request #9 from common-workflow-language/manabuishii-patch-2
Change replace charcter
2 parents 7bc4b43 + d3b585e commit 99fb3c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwl_utils/image_puller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ class SingularityImagePuller(ImagePuller):
5959
"""
6060
Pull docker image with Singularity
6161
"""
62-
CHARS_TO_REPLACE = ['/', ':']
63-
NEW_CHAR = '-'
62+
CHARS_TO_REPLACE = ['/']
63+
NEW_CHAR = '_'
6464

6565
def __init__(self, req, save_directory):
6666
super(SingularityImagePuller, self).__init__(req, save_directory)

0 commit comments

Comments
 (0)