Forgot to python -> python3 in password check

This commit is contained in:
Alexandre Aubin 2021-08-15 21:41:50 +02:00
parent b28788d708
commit 07378dfd46

View file

@ -768,7 +768,7 @@ function edit_user()
-- and the new password against the confirmation field's content -- and the new password against the confirmation field's content
if args.newpassword == args.confirm then if args.newpassword == args.confirm then
-- Check password validity -- Check password validity
local result_msg = secure_cmd_password("python /usr/lib/moulinette/yunohost/utils/password.py", args.newpassword) local result_msg = secure_cmd_password("python3 /usr/lib/moulinette/yunohost/utils/password.py", args.newpassword)
validation_error = true validation_error = true
if result_msg == nil or result_msg == "" then if result_msg == nil or result_msg == "" then
validation_error = nil validation_error = nil