aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
Diffstat (limited to 'src/web')
-rw-r--r--src/web/decorators.py2
1 files changed, 1 insertions, 1 deletions
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