summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-12-23 13:47:29 -0800
committerBryan Newbold <bnewbold@robocracy.org>2020-12-23 13:47:29 -0800
commit07841386871a36ca9464694a366a04d0b034a6d2 (patch)
tree5c0f0b6229baade9a0e19ce438591885f60ab8cc
parentec6b366af8df1956e1287cba2e0818b80ce1c518 (diff)
downloadfatcat-07841386871a36ca9464694a366a04d0b034a6d2.tar.gz
fatcat-07841386871a36ca9464694a366a04d0b034a6d2.zip
ingest: allow dblp imports
-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 cd3d53f6..7a98775d 100644
--- a/python/fatcat_tools/importers/ingest.py
+++ b/python/fatcat_tools/importers/ingest.py
@@ -86,7 +86,7 @@ class IngestFileResultImporter(EntityImporter):
self.counts['skip-ingest_request_source'] += 1
return False
- if row['request'].get('link_source') not in ('arxiv', 'pmc', 'unpaywall', 'doi', 'mag', 's2', 'doaj'):
+ if row['request'].get('link_source') not in ('arxiv', 'pmc', 'unpaywall', 'doi', 'mag', 's2', 'doaj', 'dblp'):
self.counts['skip-link-source'] += 1
return False