diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-01-21 09:47:07 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-21 09:47:07 -0800 |
commit | 176092c4e126704fe01988eee2fa82ad6efff641 (patch) | |
tree | 1ad5a00ccf10b8506e6daf54a878734f39f68787 | |
parent | 7e9742a604baddebacafc052032f63d3d433b5d0 (diff) | |
download | fatcat-scholar-176092c4e126704fe01988eee2fa82ad6efff641.tar.gz fatcat-scholar-176092c4e126704fe01988eee2fa82ad6efff641.zip |
fixup: check for container.extra in indexing pipeline
-rw-r--r-- | fatcat_scholar/schema.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fatcat_scholar/schema.py b/fatcat_scholar/schema.py index 5306130..4287d53 100644 --- a/fatcat_scholar/schema.py +++ b/fatcat_scholar/schema.py @@ -482,7 +482,9 @@ def es_biblio_from_release(release: ReleaseEntity) -> ScholarBiblio: if release.container: publisher = release.container.publisher or release.publisher - publisher_type = release.container.extra.get("publisher_type", None) + publisher_type = release.container.extra and release.container.extra.get( + "publisher_type", None + ) if not publisher_type or not isinstance(publisher_type, str): publisher_type = None container_name = release.container.name |