SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 4c75a694 authored by Jorran de Wit's avatar Jorran de Wit
Browse files

Fix not existing field being called

parent 7873df84
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment