From f91d15e4779b45da44cdc4f8d8c1b928cf70c5ac Mon Sep 17 00:00:00 2001 From: "E.S. Rosenberg a.k.a. Keeper of the Keys" Date: Tue, 11 Mar 2025 21:27:26 +0200 Subject: [PATCH] It's a tuple and not a list :facepalm: Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys --- plugins/module_utils/user.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/module_utils/user.py b/plugins/module_utils/user.py index e23d430..590d1a4 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -60,15 +60,14 @@ def user_is_locked(cursor, user, host): # ACCOUNT LOCK does not have to be the last option in the CREATE USER query. # Need to handle both DictCursor and non-DictCursor - if isinstance(result, list): + if isinstance(result, tuple): if result[0].find('ACCOUNT LOCK') > 0: return True elif isinstance(result, dict): for res in result.values(): if res.find('ACCOUNT LOCK') > 0: return True - from pprint import pprint - pprint(result) + return False