We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c73e1f7 commit 222b53cCopy full SHA for 222b53c
cwltool/cwlprov/ro.py
@@ -5,6 +5,7 @@
5
import os
6
import shutil
7
import tempfile
8
+import urllib
9
import uuid
10
from pathlib import Path, PurePosixPath
11
from typing import (
@@ -429,7 +430,7 @@ def generate_snapshot(self, prov_dep: CWLObjectType) -> None:
429
430
self.self_check()
431
for key, value in prov_dep.items():
432
if key == "location" and cast(str, value).split("/")[-1]:
- location = cast(str, value)
433
+ location = urllib.parse.unquote(cast(str, value))
434
filename = location.split("/")[-1]
435
path = os.path.join(self.folder, SNAPSHOT, filename)
436
filepath = ""
0 commit comments