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 9f5462b commit fb88d1dCopy full SHA for fb88d1d
templateflow/api.py
@@ -292,7 +292,7 @@ def _s3_get(filepath):
292
import requests
293
294
path = str(filepath.relative_to(TF_LAYOUT.root))
295
- url = "%s/%s" % (TF_S3_ROOT, path)
+ url = "%s/%s" % (TF_S3_ROOT, path.replace("\\", "/"))
296
297
print("Downloading %s" % url, file=stderr)
298
# Streaming, so we can iterate over the response.
0 commit comments