diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-23 13:47:29 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-23 13:47:29 -0800 |
commit | 07841386871a36ca9464694a366a04d0b034a6d2 (patch) | |
tree | 5c0f0b6229baade9a0e19ce438591885f60ab8cc | |
parent | ec6b366af8df1956e1287cba2e0818b80ce1c518 (diff) | |
download | fatcat-07841386871a36ca9464694a366a04d0b034a6d2.tar.gz fatcat-07841386871a36ca9464694a366a04d0b034a6d2.zip |
ingest: allow dblp imports
-rw-r--r-- | python/fatcat_tools/importers/ingest.py | 2 |
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 |