Skip to content

Commit 40325d6

Browse files
committed
fix download outputs from vip
1 parent 4df3f95 commit 40325d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vip_client/classes/VipSession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ def _init_download(self, workflow) -> dict:
974974
# Update the file metadata
975975
files_to_download[file].update()
976976
# Make the parent directory (if needed)
977-
self._mkdirs(local_path.parent, location="local")
977+
self._mkdirs(local_path.parent, location="local", exist_ok=True)
978978
# Return the list of files to download
979979
return files_to_download
980980
# ------------------------------------------------

0 commit comments

Comments
 (0)