From 123258cfe4f61e2f47d4577d06479e870c3288b2 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Wed, 30 Sep 2020 16:45:40 +0300 Subject: [PATCH] mysql_user: fix error when modifying user with host_all --- plugins/modules/mysql_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/mysql_user.py b/plugins/modules/mysql_user.py index 8d6c36a..2cdc6a4 100644 --- a/plugins/modules/mysql_user.py +++ b/plugins/modules/mysql_user.py @@ -527,7 +527,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted, old_user_mgmt = use_old_user_mgmt(cursor) if host_all: - hostnames = user_get_hostnames(cursor, [user]) + hostnames = user_get_hostnames(cursor, user) else: hostnames = [host]