From 00a741f9268988eb0afa62099cd404f1a1d0777f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 14 May 2020 00:07:17 +0200 Subject: Indentity is not the same this as equality in Python --- python/fatcat_tools/importers/jalc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/fatcat_tools/importers/jalc.py b/python/fatcat_tools/importers/jalc.py index c2adc0d6..e30bb233 100644 --- a/python/fatcat_tools/importers/jalc.py +++ b/python/fatcat_tools/importers/jalc.py @@ -201,11 +201,11 @@ class JalcImporter(EntityImporter): date = record.date or None if date: date = date.string - if len(date) is 10: + if len(date) == 10: release_date = datetime.datetime.strptime(date['completed-date'], DATE_FMT).date() release_year = release_date.year release_date = release_date.isoformat() - elif len(date) is 4 and date.isdigit(): + elif len(date) == 4 and date.isdigit(): release_year = int(date) pages = None -- cgit v1.2.3