From 5079dc4ab7aadf869a98717969e0b988cb978084 Mon Sep 17 00:00:00 2001 From: "E.S. Rosenberg a.k.a. Keeper of the Keys" Date: Mon, 3 Mar 2025 16:39:26 +0200 Subject: [PATCH] Fix missing parameters for execute() Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys --- plugins/module_utils/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index 050e766..665e113 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -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}