Skip to content

Commit d3b585e

Browse files
authored
Change replace charcter
cwltool 1.0.20190815141648 It do not convert `:`. It uses '_' for replaced character
1 parent f7efad1 commit d3b585e

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)