summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-12-23 14:05:30 -0800
committerBryan Newbold <bnewbold@robocracy.org>2020-12-23 14:05:32 -0800
commitf2f78b04ddee7983e1ebef8480c611e072fcd3c6 (patch)
tree86225bc86b3209b6e9a1cc3cd753c34cfe9f8377
parent07841386871a36ca9464694a366a04d0b034a6d2 (diff)
downloadfatcat-f2f78b04ddee7983e1ebef8480c611e072fcd3c6.tar.gz
fatcat-f2f78b04ddee7983e1ebef8480c611e072fcd3c6.zip
dblp import: fix arxiv_id typo
Would have been caught by mypy!
-rw-r--r--python/fatcat_tools/importers/dblp_release.py2
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