diff options
author | Cedric Ollivier <ollivier.cedric@gmail.com> | 2016-10-17 07:10:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-17 07:10:10 +0000 |
commit | 288da283a86007af01c2e71296f8230f6fce07e5 (patch) | |
tree | 40ea0979206ac91ad31158d62e0f3473ebcaaae4 /cli/commands/cli_os.py | |
parent | 91acddf71dc4fc48506dddc95621705cbe94ffaf (diff) | |
parent | 6aa929cd8c8a9116c8df23bc0bf4cc76516425e6 (diff) |
Merge "Remove exit() in ft_utils.execute_command"
Diffstat (limited to 'cli/commands/cli_os.py')
-rw-r--r-- | cli/commands/cli_os.py | 2 |
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): |