Skip to content

Commit eb990ca

Browse files
authored
Merge pull request #58 from dandi/fix
Fix #57
2 parents ed2dd8d + 0faeee7 commit eb990ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backups2datalad/datasetter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ async def update_from_backup(
9393
if not dandiset_ids and self.config.gh_org is not None:
9494
extant = {d.identifier for d, _ in report.results}
9595
extant.update(d.identifier for d in report.failed)
96-
for sub_info in await superds.get_subdatasets(result_xfm="relpaths"):
97-
d = sub_info["path"]
96+
for sub_info in await superds.get_subdatasets():
97+
d = sub_info["gitmodule_path"]
9898
if (
9999
re.fullmatch(DANDISET_ID_REGEX, d)
100100
and d not in extant

0 commit comments

Comments
 (0)