Fix sanity pep8

This commit is contained in:
Laurent Indermuehle 2022-06-22 17:26:04 +02:00
commit 2bc2e59695
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -440,9 +440,9 @@ def db_dump(module, host, user, password, db_name, target, all_databases, port,
executed_commands.append(cmd)
if pipefail:
rc, stdout, stderr = module.run_command(cmd, use_unsafe_shell=True, executable='bash')
rc, stdout, stderr = module.run_command(cmd, use_unsafe_shell=True, executable='bash')
else:
rc, stdout, stderr = module.run_command(cmd, use_unsafe_shell=True)
rc, stdout, stderr = module.run_command(cmd, use_unsafe_shell=True)
return rc, stdout, stderr