aboutsummaryrefslogtreecommitdiff
path: root/src/web/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/decorators.py')
-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 95177f6e..83a06a48 100644
--- a/src/web/decorators.py
+++ b/src/web/decorators.py
@@ -4,7 +4,7 @@
from threading import Thread
from functools import wraps
-from flask.ext.login import login_required
+from flask_login import login_required
def async(f):
bgstack15