diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-01-10 17:25:43 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-01-10 17:25:43 -0800 |
commit | f725845758c7dfdf88de1037bb58256905db5302 (patch) | |
tree | f864f63a9b171532cac66d30da89b175b97c96c7 | |
parent | 5b7f613f77c5bc77f071bcb7cc975c5f4dd02c87 (diff) | |
download | sandcrawler-f725845758c7dfdf88de1037bb58256905db5302.tar.gz sandcrawler-f725845758c7dfdf88de1037bb58256905db5302.zip |
fix trivial typo
-rw-r--r-- | python/sandcrawler/ingest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/sandcrawler/ingest.py b/python/sandcrawler/ingest.py index ce3b75e..331df11 100644 --- a/python/sandcrawler/ingest.py +++ b/python/sandcrawler/ingest.py @@ -145,7 +145,7 @@ class IngestFileWorker(SandcrawlerWorker): # backwards compatibility if request.get('ingest_type') in ('file', None): - reqeust['ingest_type'] = 'pdf' + request['ingest_type'] = 'pdf' # for now, only pdf ingest is implemented if not 'ingest_type' in request: |