From 59854e8a8e4ad6916923c0bda803b095d5a8c6fc Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Tue, 10 Oct 2023 17:49:24 +0200 Subject: [PATCH] spelling --- 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 0b37f365..6425d812 100644 --- a/plugins/module_utils/user.py +++ b/plugins/module_utils/user.py @@ -850,7 +850,7 @@ def get_resource_limits(module, cursor, user, host): current_limits['MAX_STATEMENT_TIME'] = res[4] # I'm not sure this is useful. Maybe fetchone() always return a - # tuple? But I go so many KeyError 0 errors that I haded this. + # tuple? But I got so many KeyError 0 that I added this to fix the issue. if isinstance(res, dict): current_limits = { 'MAX_QUERIES_PER_HOUR': res.get('MAX_QUERIES_PER_HOUR'),