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 dac8c7d commit 4bbca6eCopy full SHA for 4bbca6e
lifemonitor/api/models/rocrate/__init__.py
@@ -283,7 +283,7 @@ def download(self, target_path: str) -> str:
283
raise lm_exceptions.DownloadException(detail="RO-Crate unavailable", status=410)
284
285
tmpdir_path = Path(target_path)
286
- local_zip = download_url(self.local_path,
+ local_zip = download_url(self.uri,
287
target_path=(tmpdir_path / 'rocrate.zip').as_posix())
288
logger.debug("ZIP Archive: %s", local_zip)
289
return (tmpdir_path / 'rocrate.zip').as_posix()
0 commit comments