diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-23 14:05:30 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-23 14:05:32 -0800 |
commit | f2f78b04ddee7983e1ebef8480c611e072fcd3c6 (patch) | |
tree | 86225bc86b3209b6e9a1cc3cd753c34cfe9f8377 /python/fatcat_tools | |
parent | 07841386871a36ca9464694a366a04d0b034a6d2 (diff) | |
download | fatcat-f2f78b04ddee7983e1ebef8480c611e072fcd3c6.tar.gz fatcat-f2f78b04ddee7983e1ebef8480c611e072fcd3c6.zip |
dblp import: fix arxiv_id typo
Would have been caught by mypy!
Diffstat (limited to 'python/fatcat_tools')
-rw-r--r-- | python/fatcat_tools/importers/dblp_release.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/importers/dblp_release.py b/python/fatcat_tools/importers/dblp_release.py index 5cbc95d0..5aea4429 100644 --- a/python/fatcat_tools/importers/dblp_release.py +++ b/python/fatcat_tools/importers/dblp_release.py @@ -361,7 +361,7 @@ class DblpReleaseImporter(EntityImporter): return False # logic for whether to do update or skip - if (existing.container_id and existing.release_type and existing.release_stage) or existing.ext_ids.arxiv_id: + if (existing.container_id and existing.release_type and existing.release_stage) or existing.ext_ids.arxiv: self.counts['skip-update'] += 1 return False |