From e0baeade7924019c5bbd27d9a7c116a1e26854fc Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 22 Apr 2020 22:25:36 +0200 Subject: datacite: fix type error Up to now, we expected the description to be a string or list. Add handling for int as well. First appeared: Apr 22 19:58:39. --- python/fatcat_tools/importers/datacite.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/fatcat_tools') diff --git a/python/fatcat_tools/importers/datacite.py b/python/fatcat_tools/importers/datacite.py index 244984f5..d998f266 100644 --- a/python/fatcat_tools/importers/datacite.py +++ b/python/fatcat_tools/importers/datacite.py @@ -496,10 +496,12 @@ class DataciteImporter(EntityImporter): if not desc.get('descriptionType') == 'Abstract': continue - # Description maybe a string or list. + # Description maybe a string, int or list. text = desc.get('description', '') if not text: continue + if isinstance(text, int): + text = '{}'.format(text) if isinstance(text, list): try: text = "\n".join(text) -- cgit v1.2.3