From 2bc2e596951819095008c754ce28fa69ea342ec9 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Wed, 22 Jun 2022 17:26:04 +0200 Subject: [PATCH] Fix sanity pep8 --- plugins/modules/mysql_db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/mysql_db.py b/plugins/modules/mysql_db.py index f94633d..a9fc1fd 100644 --- a/plugins/modules/mysql_db.py +++ b/plugins/modules/mysql_db.py @@ -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