diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-11-19 22:19:45 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-11-19 22:19:45 +0100 |
commit | 6aa86ba89975a5235a424c001db46a022d245640 (patch) | |
tree | 5470f4c93886253d8ddc560fe984ef797a3f3fb6 | |
parent | Updated some comments. (diff) | |
download | newspipe-6aa86ba89975a5235a424c001db46a022d245640.tar.gz newspipe-6aa86ba89975a5235a424c001db46a022d245640.tar.bz2 newspipe-6aa86ba89975a5235a424c001db46a022d245640.zip |
Bug fix.
-rw-r--r-- | pyaggr3g470r/emails.py | 2 |
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:") |