From 4c75a6944d4959b31ff8c700a8a0bbc4f40b716d Mon Sep 17 00:00:00 2001
From: Jorran de Wit <jorrandewit@outlook.com>
Date: Sun, 14 May 2017 14:06:31 +0200
Subject: [PATCH] Fix not existing field being called

---
 scipost/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scipost/models.py b/scipost/models.py
index ecc4dcd82..6cd9f4bca 100644
--- a/scipost/models.py
+++ b/scipost/models.py
@@ -344,7 +344,7 @@ class CitationNotification(models.Model):
     def __str__(self):
         text = str(self.contributor) + ', cited in '
         if self.cited_in_submission:
-            text += self.cited_in_submission.arxiv_nr_w_vn_nr
+            text += self.cited_in_submission.arxiv_identifier_w_vn_nr
         elif self.cited_in_publication:
             text += self.cited_in_publication.citation()
         if self.processed:
-- 
GitLab