diff options
Diffstat (limited to 'python/fatcat_tools')
| -rw-r--r-- | python/fatcat_tools/importers/datacite.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/python/fatcat_tools/importers/datacite.py b/python/fatcat_tools/importers/datacite.py index 322e3db9..0de15a18 100644 --- a/python/fatcat_tools/importers/datacite.py +++ b/python/fatcat_tools/importers/datacite.py @@ -274,7 +274,7 @@ class DataciteImporter(EntityImporter):          for i, c in enumerate(attributes['creators']):              nameType = c.get('nameType', '') or '' -            if nameType == 'Personal': +            if nameType == 'Personal' or nameType == '':                  creator_id = None                  for nid in c.get('nameIdentifiers', []):                      if not nid.get('nameIdentifierScheme').lower() == "orcid": | 
