aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-19 22:19:45 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-19 22:19:45 +0100
commit6aa86ba89975a5235a424c001db46a022d245640 (patch)
tree5470f4c93886253d8ddc560fe984ef797a3f3fb6 /pyaggr3g470r
parentUpdated some comments. (diff)
downloadnewspipe-6aa86ba89975a5235a424c001db46a022d245640.tar.gz
newspipe-6aa86ba89975a5235a424c001db46a022d245640.tar.bz2
newspipe-6aa86ba89975a5235a424c001db46a022d245640.zip
Bug fix.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/emails.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/emails.py b/pyaggr3g470r/emails.py
index 65af36ad..26fece56 100644
--- a/pyaggr3g470r/emails.py
+++ b/pyaggr3g470r/emails.py
@@ -108,7 +108,7 @@ def send_postmark(to="", bcc="", subject="", plaintext=""):
message.to = conf.NOTIFICATION_EMAIL
message.bcc = bcc
elif bcc == "":
- message.to = recipients
+ message.to = to
message.send()
except Exception as e:
logger.exception("send_postmark raised:")
bgstack15