aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-08-07 00:31:47 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-08-07 00:31:47 +0200
commite8b49eb250c5b713a4c80e4ce403d5fdf77d9b0d (patch)
tree81fae36a897c53e2c5fb62be846d7a85d2a877c3 /src
parentUpdated Heroku runtime and Pipfile file for Python 3.7.0. (diff)
downloadnewspipe-e8b49eb250c5b713a4c80e4ce403d5fdf77d9b0d.tar.gz
newspipe-e8b49eb250c5b713a4c80e4ce403d5fdf77d9b0d.tar.bz2
newspipe-e8b49eb250c5b713a4c80e4ce403d5fdf77d9b0d.zip
async is now a reserved word
Diffstat (limited to 'src')
-rw-r--r--src/notifications/emails.py4
-rw-r--r--src/web/decorators.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/notifications/emails.py b/src/notifications/emails.py
index 3ee0aa4a..e2c9f444 100644
--- a/src/notifications/emails.py
+++ b/src/notifications/emails.py
@@ -28,12 +28,12 @@ import sendgrid
from sendgrid.helpers.mail import *
import conf
-from web.decorators import async
+from web.decorators import async_maker
logger = logging.getLogger(__name__)
-@async
+@async_maker
def send_async_email(mfrom, mto, msg):
try:
s = smtplib.SMTP(conf.NOTIFICATION_HOST)
diff --git a/src/web/decorators.py b/src/web/decorators.py
index 83a06a48..3835f646 100644
--- a/src/web/decorators.py
+++ b/src/web/decorators.py
@@ -7,7 +7,7 @@ from functools import wraps
from flask_login import login_required
-def async(f):
+def async_maker(f):
"""
This decorator enables to launch a task (for examle sending an email or
indexing the database) in background.
bgstack15