Fix missing parameters for execute()

Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
E.S. Rosenberg a.k.a. Keeper of the Keys 2025-03-03 16:39:26 +02:00
parent 6747ef32e9
commit 5079dc4ab7

View file

@ -267,7 +267,7 @@ def user_add(cursor, user, host, host_all, password, encrypted,
final_attributes = attributes_get(cursor, user, host)
# if locked:
# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK")
# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK", (user, host))
return {'changed': True, 'password_changed': not used_existing_password, 'attributes': final_attributes}