aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/controllers/user.py')
-rw-r--r--src/web/controllers/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/controllers/user.py b/src/web/controllers/user.py
index 65e01e6f..6ab04d44 100644
--- a/src/web/controllers/user.py
+++ b/src/web/controllers/user.py
@@ -1,5 +1,5 @@
import logging
-from werkzeug import generate_password_hash, check_password_hash
+from werkzeug.security import generate_password_hash, check_password_hash
from .abstract import AbstractController
from web.models import User
bgstack15