aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-19 21:58:58 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-19 21:58:58 +0100
commitf4f442487ac8da4ffcb79e84ebecc716988033e4 (patch)
tree81f0e50e167e5dad4f257fb7b772ed0994baffc2 /pyaggr3g470r
parentBug fix: email content is now created outside the function. (diff)
downloadnewspipe-f4f442487ac8da4ffcb79e84ebecc716988033e4.tar.gz
newspipe-f4f442487ac8da4ffcb79e84ebecc716988033e4.tar.bz2
newspipe-f4f442487ac8da4ffcb79e84ebecc716988033e4.zip
Updated comment.
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 68511784..b60a9867 100644
--- a/pyaggr3g470r/emails.py
+++ b/pyaggr3g470r/emails.py
@@ -45,7 +45,7 @@ def send_async_email(mfrom, mto, msg):
def send(*args, **kwargs):
"""
- This decorator enables to send email through Postmark
+ This functions enables to send email through Postmark
or a SMTP server.
"""
if conf.ON_HEROKU:
bgstack15