From ddca6d8993342eb0aaa97aea6a3497b8b6dd9c86 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 18 Feb 2022 19:42:43 -0800 Subject: ingest: fix mistakenly commented except block (?) --- python/sandcrawler/ingest_fileset.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'python/sandcrawler') diff --git a/python/sandcrawler/ingest_fileset.py b/python/sandcrawler/ingest_fileset.py index 56f1697..dceca03 100644 --- a/python/sandcrawler/ingest_fileset.py +++ b/python/sandcrawler/ingest_fileset.py @@ -147,10 +147,9 @@ class IngestFilesetWorker(IngestFileWorker): result["error_message"] = str(e)[:1600] return result except NotImplementedError: - # result['status'] = 'not-implemented' - # result['error_message'] = str(e)[:1600] - # return result - resource = None + result['status'] = 'not-implemented' + result['error_message'] = str(e)[:1600] + return result html_biblio = None if resource: -- cgit v1.2.3