Skip to content

Commit bdc8d5c

Browse files
authored
Merge pull request #109 from lauramble/dataset_download_fix
Fix repo IRI in the download method for dataset version
2 parents 0770715 + 52ef75c commit bdc8d5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fairgraph/openminds/core/products/dataset_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def download(self, local_path, client, accept_terms_of_use=False):
206206
if accepted_terms_of_use(client, accept_terms_of_use=accept_terms_of_use):
207207
repo = self.repository.resolve(client, release_status=self.release_status or None)
208208
if repo.iri.value.startswith("https://object.cscs.ch/v1/AUTH") or repo.iri.value.startswith(
209-
"https://data-proxy.ebrains.eu/api/v1/public"
209+
"https://data-proxy.ebrains.eu/api/v1/buckets"
210210
):
211211
zip_archive_url = f"https://data.kg.ebrains.eu/zip?container={repo.iri.value}"
212212
else:

0 commit comments

Comments
 (0)