aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-01-20 11:21:13 -0800
committerBryan Newbold <bnewbold@robocracy.org>2020-01-20 11:21:13 -0800
commitf7b6b8b3cda32b258ea21518a42bea41bd87532d (patch)
treebe68656d1c3634de37dba767cd60ad01735d5b91 /python
parentc336d805bbe580d4d905398bfa86f52617eb8144 (diff)
downloadfatcat-f7b6b8b3cda32b258ea21518a42bea41bd87532d.tar.gz
fatcat-f7b6b8b3cda32b258ea21518a42bea41bd87532d.zip
fix trivial typo in file importer
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_tools/importers/ingest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/importers/ingest.py b/python/fatcat_tools/importers/ingest.py
index 82a33aaa..bdfd2835 100644
--- a/python/fatcat_tools/importers/ingest.py
+++ b/python/fatcat_tools/importers/ingest.py
@@ -58,7 +58,7 @@ class IngestFileResultImporter(EntityImporter):
self.counts['skip-ingest_request_source'] += 1
return False
if source.startswith('arabesque'):
- if row['reqeust'].get('link_source') not in ('arxiv', 'pmc', 'unpaywall', 'doi'):
+ if row['request'].get('link_source') not in ('arxiv', 'pmc', 'unpaywall', 'doi'):
self.counts['skip-arabesque-source'] += 1
return False
if source.startswith('savepapernow'):