mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
mysql_db module: typo fix
Tests clean.
This commit is contained in:
parent
427221786c
commit
2b53ece3ab
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue