summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-08-15 21:22:55 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-15 21:22:55 +0000
commit1e937a18d5281c65b40f74b6cb40c198dae5544e (patch)
tree3c4b97b607d2acd416ee476821b3e70343414d1b
parent6ae323665948de5aaf09d59b6e129355deb34153 (diff)
parent399d59d06fe1e49007a0bc165b095cdf92a7453a (diff)
Merge "Update cli output text"
-rw-r--r--cli/commands/cli_os.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/commands/cli_os.py b/cli/commands/cli_os.py
index b007842b3..722c700cd 100644
--- a/cli/commands/cli_os.py
+++ b/cli/commands/cli_os.py
@@ -106,7 +106,8 @@ class CliOpenStack:
def snapshot_show(self):
if not os.path.isfile(OS_SNAPSHOT_FILE):
click.echo("There is no OpenStack snapshot created. To create "
- "one run the command 'functest env os-create-snapshot'")
+ "one run the command "
+ "'functest openstack snapshot-create'")
return
with open(OS_SNAPSHOT_FILE, 'r') as yaml_file:
click.echo("\n%s"
@@ -117,6 +118,7 @@ class CliOpenStack:
if not os.path.isfile(OS_SNAPSHOT_FILE):
click.echo("Not possible to clean OpenStack without a snapshot. "
"This could cause problems. "
- "Run first the command 'os-create-shapshot'.")
+ "Run first the command "
+ "'functest openstack snapshot-create'")
return
os_clean.main()