Skip to content

Commit 4cf0973

Browse files
committed
bug fix
1 parent cb888d5 commit 4cf0973

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

download.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,9 @@ def _resolve_usi(usi, temp_folder="temp", cleanup=True):
380380
os.system(wget_cmd)
381381
else:
382382
# lets try to get it locally first
383-
384383
try:
385384
if resource_name == "MASSIVEDATASET":
386-
local_dataset_path = "/data/datasets/server/{}/{}".format(usi_splits[1], usi_splits[2])
385+
local_dataset_path = "/data/datasets/server/MassIVE/{}/{}".format(usi_splits[1], usi_splits[2])
387386
print("DEBUG: TRYING LOCAL", local_dataset_path, file=sys.stderr, flush=True)
388387
if os.path.exists(local_dataset_path):
389388
os.system("cp {} {}".format(local_dataset_path, temp_download_filename))

0 commit comments

Comments
 (0)