Skip to content

Commit a8ca7d4

Browse files
authored
Merge branch 'master' into node_fix
2 parents a2af80a + 6e9590f commit a8ca7d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/draft2tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from .utils import aslist
2727

2828
ACCEPTLIST_EN_STRICT_RE = re.compile(r"^[a-zA-Z0-9._+-]+$")
29-
ACCEPTLIST_EN_RELAXED_RE = re.compile(r"^[ #a-zA-Z0-9._+-]+$") # with spaces and hashes
29+
ACCEPTLIST_EN_RELAXED_RE = re.compile(r".*") # Accept anything
3030
ACCEPTLIST_RE = ACCEPTLIST_EN_STRICT_RE
3131

3232
from .flatten import flatten

0 commit comments

Comments
 (0)