From 6aa929cd8c8a9116c8df23bc0bf4cc76516425e6 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 12 Oct 2016 17:25:21 +0200 Subject: Remove exit() in ft_utils.execute_command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It simply removes the exit call in ft_utils.execute_command which is quite safe as every testcase sets exit_on_error to False JIRA: FUNCTEST-438 Change-Id: Ia273de0955cc3ea65a150c626638400ce614da00 Signed-off-by: Cédric Ollivier --- cli/commands/cli_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/commands') diff --git a/cli/commands/cli_os.py b/cli/commands/cli_os.py index 4324ae44d..3748c212a 100644 --- a/cli/commands/cli_os.py +++ b/cli/commands/cli_os.py @@ -47,7 +47,7 @@ class CliOpenStack: def show_credentials(self): cmd = "env|grep OS_" - ft_utils.execute_command(cmd, exit_on_error=False, verbose=False) + ft_utils.execute_command(cmd, verbose=False) click.echo("") def fetch_credentials(self): -- cgit 1.2.3-korg