From 49545015c8fcf6f519fb8847a7fa665e70132211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Marti=CC=81n?= Date: Mon, 26 Jan 2015 15:08:24 +0100 Subject: [PATCH] Fixed typo in Email from_mail --- shelfzilla/apps/mailing/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shelfzilla/apps/mailing/models.py b/shelfzilla/apps/mailing/models.py index eb9313b..61c69e6 100644 --- a/shelfzilla/apps/mailing/models.py +++ b/shelfzilla/apps/mailing/models.py @@ -17,7 +17,7 @@ class Email(object): text = '' def __init__(self, context={}): - self.form_email = getattr(settings, 'FROM_EMAIL', 'root@localhost') + self.from_email = getattr(settings, 'FROM_EMAIL', 'root@localhost') self.context = context self.prepare()