diff --git a/journals/views.py b/journals/views.py index 8e33a39beb6ccde043dc71b4e857814f51f63035..c5e3ac2497043979c4337cfe9813b90a42078034 100644 --- a/journals/views.py +++ b/journals/views.py @@ -752,7 +752,7 @@ def harvest_citedby_links(request, doi_label): citation['doi'] = link_el.find(prefix + 'doi').text el = link_el.find(prefix + 'article_title') - if el: + if el is not None: citation['article_title'] = el.text if link_el.find(prefix + 'journal_abbreviation'):