From 2b53ece3ab4ce58010d0a5db5c5ae00a0f839db4 Mon Sep 17 00:00:00 2001 From: Richard C Isaacson Date: Wed, 12 Mar 2014 23:25:22 -0500 Subject: [PATCH] mysql_db module: typo fix Tests clean. --- library/database/mysql_db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/database/mysql_db b/library/database/mysql_db index 2fc32914082..c9fd5b4e087 100644 --- a/library/database/mysql_db +++ b/library/database/mysql_db @@ -128,7 +128,7 @@ def db_dump(module, host, user, password, db_name, target, port, socket=None): if socket is not None: cmd += " --socket=%s" % pipes.quote(socket) else: - cmd += " --host=%s --port=%s" % (pipes.quote(host), pipes(port)) + cmd += " --host=%s --port=%s" % (pipes.quote(host), pipes.quote(port)) cmd += " %s" % pipes.quote(db_name) if os.path.splitext(target)[-1] == '.gz': cmd = cmd + ' | gzip > ' + pipes.quote(target)