summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngel Velasquez <angvp@archlinux.org>2017-05-17 23:11:44 -0400
committerAngel Velasquez <angvp@archlinux.org>2017-05-17 23:11:44 -0400
commita9dcbbd1aa69e06e8373a7f0836fbc8a12d54b86 (patch)
tree1b2b784fc413050ed0180d651d624569a2d4ab00
parent49694232e2277212769bb5b174362dcf69db3408 (diff)
downloadarchweb-release_2017-05-17.tar.gz
archweb-release_2017-05-17.zip
Update news e-mail templaterelease_2017-05-17
Add missing quotes on the body.
-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)