From 79af4043ed667b8f81613cb8e4bf88b0450ae8a6 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Fri, 2 Sep 2016 13:40:41 -0400 Subject: [PATCH] 9857: Allow any character in filenames. --- sdk/cwl/arvados_cwl/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/cwl/arvados_cwl/runner.py b/sdk/cwl/arvados_cwl/runner.py index d7d5d2b32d..e824635486 100644 --- a/sdk/cwl/arvados_cwl/runner.py +++ b/sdk/cwl/arvados_cwl/runner.py @@ -19,7 +19,7 @@ from .pathmapper import ArvPathMapper logger = logging.getLogger('arvados.cwl-runner') -cwltool.draft2tool.ACCEPTLIST_RE = re.compile(r"^[a-zA-Z0-9._+-]+$") +cwltool.draft2tool.ACCEPTLIST_RE = re.compile(r".*") class Runner(object): def __init__(self, runner, tool, job_order, enable_reuse): -- 2.30.2