We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42dc7ed commit f8baa0bCopy full SHA for f8baa0b
s3file/middleware.py
@@ -30,7 +30,7 @@ def get_files_from_storage(paths):
30
for path in paths:
31
path = pathlib.PurePosixPath(path)
32
try:
33
- f = storage.open(path.relative_to(storage.location))
+ f = storage.open(str(path.relative_to(storage.location)))
34
f.name = path.name
35
yield f
36
except (OSError, ValueError):
0 commit comments