From 897e73c975bbeb787d5e605f6701530f0637b498 Mon Sep 17 00:00:00 2001
From: Boris Ponsioen <b.g.t.ponsioen@uva.nl>
Date: Mon, 16 Apr 2018 15:55:51 +0200
Subject: [PATCH] Readds error handling in get_crossref_test temporarily

---
 metacore/services.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/metacore/services.py b/metacore/services.py
index 2a626fb59..9f3b858d9 100644
--- a/metacore/services.py
+++ b/metacore/services.py
@@ -42,7 +42,7 @@ def get_crossref_test(cursor='*'):
             # Parser returns None if there's an error
             errors = any([not i for i in citables if i == False])
             orig_citables = citables
-            citables = [citable for citable in citables if citable is not None]
+            citables = [citable for citable in citables if citable]
 
             # Mass insert in database (will fail on encountering existing documents
             # with same DOI
-- 
GitLab