aboutsummaryrefslogtreecommitdiffstats
path: root/cli
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2016-10-12 17:25:21 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2016-10-12 17:28:07 +0200
commit6aa929cd8c8a9116c8df23bc0bf4cc76516425e6 (patch)
tree9f08736ad1e011aace3863818f6f4f093330244a /cli
parentab3b723d2cc6c16b11c3a17b091da384213bcaac (diff)
Remove exit() in ft_utils.execute_command
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 <cedric.ollivier@orange.com>
Diffstat (limited to 'cli')
-rw-r--r--cli/commands/cli_os.py2
1 files changed, 1 insertions, 1 deletions
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):