diff --git a/cps/web.py b/cps/web.py index 5b459608..7712535b 100755 --- a/cps/web.py +++ b/cps/web.py @@ -637,7 +637,7 @@ def edit_user(user_id): return redirect(url_for('user_list')) else: if to_save["password"]: - content.password == generate_password_hash(to_save["password"]) + content.password = generate_password_hash(to_save["password"]) if "admin_user" in to_save and content.role != 1: content.role = 1 elif not "admin_user" in to_save and content.role == 1: