From 1f8b0355585ec9da6d7ebba97399f90a6788821a Mon Sep 17 00:00:00 2001 From: klmp200 Date: Fri, 25 Aug 2017 16:14:02 +0200 Subject: [PATCH] mailing: Oups, forgot some \n in mailing format that I couldn't see at the first time --- api/views/club.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/views/club.py b/api/views/club.py index 03b7f36c..ca2a8c1b 100644 --- a/api/views/club.py +++ b/api/views/club.py @@ -59,5 +59,5 @@ def FetchMailingLists(request): raise PermissionDenied data = '' for mailing in Mailing.objects.filter(is_moderated=True).all(): - data += mailing.fetch_format() + data += mailing.fetch_format() + "\n" return Response(data)