Fix typo in save_user() function

async-tree
Javier Sánchez Parra 2022-11-07 15:48:06 +01:00
parent eeda698f40
commit fc02d891cd
1 changed files with 1 additions and 1 deletions

View File

@ -1555,7 +1555,7 @@ def delete_server(server):
def save_user(form):
username = form.username.datk
username = form.username.data
pwd_hash = hash_password(form.pwd.data)
pwd_hash_confirm = hash_password(form.pwd_confirm.data)