From 5a22f052b4f33b64e8e2b1f68d36abe731c1572b Mon Sep 17 00:00:00 2001 From: Jonathan Mainguy Date: Thu, 21 May 2015 09:32:12 -0400 Subject: [PATCH] changes hostname to lowercase --- database/mysql/mysql_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/mysql/mysql_user.py b/database/mysql/mysql_user.py index bd289ff30de..ba5b6370f1b 100644 --- a/database/mysql/mysql_user.py +++ b/database/mysql/mysql_user.py @@ -396,7 +396,7 @@ def main(): login_password = module.params["login_password"] user = module.params["user"] password = module.params["password"] - host = module.params["host"] + host = module.params["host"].lower() state = module.params["state"] priv = module.params["priv"] check_implicit_admin = module.params['check_implicit_admin']