From 381ac835669fbc06f63007a2867f77c7a756b694 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 2 Nov 2021 11:43:13 -0700 Subject: fix missing variable in fileset ingest --- python/fatcat_tools/importers/ingest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'python/fatcat_tools/importers') diff --git a/python/fatcat_tools/importers/ingest.py b/python/fatcat_tools/importers/ingest.py index 288c4cff..cb663330 100644 --- a/python/fatcat_tools/importers/ingest.py +++ b/python/fatcat_tools/importers/ingest.py @@ -646,9 +646,8 @@ class IngestFilesetResultImporter(IngestFileResultImporter): # TODO: web-base if row['strategy'] == 'archiveorg-fileset-bundle' and row.get('archiveorg_item_name'): - # TODO: bundle path urls.append(fatcat_openapi_client.FilesetUrl( - url=f"https://archive.org/download/{row['archiveorg_item_name']}/{bundle_path}", + url=f"https://archive.org/download/{row['archiveorg_item_name']}/{row['archiveorg_bundle_path']}", rel="archive-bundle", )) -- cgit v1.2.3