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 9b7928e commit 6591eadCopy full SHA for 6591ead
earthaccess/store.py
@@ -526,7 +526,7 @@ def _get_urls(
526
# TODO: make this parallel or concurrent
527
for file in data_links:
528
s3_fs.get(file, local_path)
529
- file_name = Path(local_path, Path(file).name)
+ file_name = Path(local_path) / Path(file).name
530
print(f"Downloaded: {file_name}")
531
downloaded_files.append(file_name)
532
return downloaded_files
0 commit comments