From 494b5373599bc93c8c045b29000538a86143e59c Mon Sep 17 00:00:00 2001 From: tompal3 Date: Tue, 20 Feb 2024 21:54:50 +0200 Subject: [PATCH] Update plugins/module_utils/user.py Co-authored-by: Andrew Klychkov --- plugins/module_utils/user.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index 84af957..5c86425 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -974,12 +974,7 @@ def set_password_expire(cursor, user, host, password_expire, password_expire_int elif password_expire.lower() == "now": statement = "PASSWORD EXPIRE" - params = (user, host) - query = ["ALTER USER %s@%s"] - - query.append(statment) - query = ' '.join(query) - cursor.execute(query, params) + cursor.execute("ALTER USER %s@%s " + statement, (user, host)) def get_password_expiration_policy(cursor, user, host, maria_role=False):