Skip to content

Commit 6591ead

Browse files
kvenkmanjhkennedy
andauthored
Update earthaccess/store.py
Co-authored-by: Joseph H Kennedy <[email protected]>
1 parent 9b7928e commit 6591ead

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

earthaccess/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def _get_urls(
526526
# TODO: make this parallel or concurrent
527527
for file in data_links:
528528
s3_fs.get(file, local_path)
529-
file_name = Path(local_path, Path(file).name)
529+
file_name = Path(local_path) / Path(file).name
530530
print(f"Downloaded: {file_name}")
531531
downloaded_files.append(file_name)
532532
return downloaded_files

0 commit comments

Comments
 (0)