summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--news/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/news/views.py b/news/views.py
index b5bb4801..f85db171 100644
--- a/news/views.py
+++ b/news/views.py
@@ -46,7 +46,7 @@ class NewsCreateView(CreateView):
template = loader.get_template('news/news_email_notification.txt')
send_mail('[arch-announce] %s' % newsitem.title,
template.render(ctx),
- 'Arch Linux: Recent news updates: %s <arch-announce@archlinux.org>' % newsitem.author.get_full_name(),
+ '"Arch Linux: Recent news updates: %s" <arch-announce@archlinux.org>' % newsitem.author.get_full_name(),
['arch-announce@archlinux.org'],
fail_silently=True)
return super(NewsCreateView, self).form_valid(form)