update_password 오류 수정
Some checks failed
Docker Build and Deploy / build-and-push (push) Has been cancelled
Docker Build and Deploy / deploy (push) Has been cancelled

This commit is contained in:
Ayuriel 2025-09-02 12:50:27 +00:00
parent ccc0c5da4c
commit 4f2194a8ae

View File

@ -55,7 +55,7 @@ def main():
return
# Hash the new password
hashed_password = stauth.Hasher([new_password]).generate()[0]
hashed_password = stauth.Hasher().hash_list([new_password])[0]
# Update the password
config['credentials']['usernames'][selected_username]['password'] = hashed_password