diff options
-rw-r--r-- | python/fatcat_tools/importers/arabesque.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/fatcat_tools/importers/arabesque.py b/python/fatcat_tools/importers/arabesque.py index ad211d21..4353795a 100644 --- a/python/fatcat_tools/importers/arabesque.py +++ b/python/fatcat_tools/importers/arabesque.py @@ -120,6 +120,9 @@ class ArabesqueMatchImporter(EntityImporter): if not url: self.counts['skip-url'] += 1 return None + if not row['final_timestamp']: + self.counts['skip-missing-timestamp'] += 1 + return None wayback = "https://web.archive.org/web/{}/{}".format( row['final_timestamp'], row['final_url']) |