diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-02-18 19:42:43 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-02-18 19:42:43 -0800 |
commit | ddca6d8993342eb0aaa97aea6a3497b8b6dd9c86 (patch) | |
tree | 010525b9322e9f7d3db1da9b5f6710b3bc32fd38 | |
parent | 6ff4dca52c413e66da10cac1fe3b5c7c3ee4315c (diff) | |
download | sandcrawler-ddca6d8993342eb0aaa97aea6a3497b8b6dd9c86.tar.gz sandcrawler-ddca6d8993342eb0aaa97aea6a3497b8b6dd9c86.zip |
ingest: fix mistakenly commented except block (?)
-rw-r--r-- | python/sandcrawler/ingest_fileset.py | 7 |
1 files changed, 3 insertions, 4 deletions
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: |