From cdd14c223f9601c66761d8e96e9a93674e47f9f0 Mon Sep 17 00:00:00 2001
From: Jorran de Wit <jorrandewit@outlook.com>
Date: Tue, 10 Apr 2018 12:40:14 +0200
Subject: [PATCH] Fix citation prop

---
 journals/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/journals/views.py b/journals/views.py
index 5a0d9ad5d..a5fee852f 100644
--- a/journals/views.py
+++ b/journals/views.py
@@ -1152,6 +1152,6 @@ def arxiv_doi_feed(request, doi_label):
     for publication in publications:
         feedxml += ('\n<article preprint_id="%s" doi="%s" journal_ref="%s" />' % (
             publication.accepted_submission.arxiv_identifier_wo_vn_nr, publication.doi_string,
-            publication.citation)
+            publication.citation))
     feedxml += '\n</preprint>'
     return HttpResponse(feedxml, content_type='text/xml')
-- 
GitLab