Skip to content

Commit 1a3daef

Browse files
authored
Removed deprecated '-e' from informational message (#898)
1 parent c03af9f commit 1a3daef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cloudify_cli/commands/executions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def manager_start(workflow_id,
194194
"""
195195
utils.explicit_tenant_name_message(tenant_name, logger)
196196
events_logger = get_events_logger(json_output)
197-
events_message = "* Run 'cfy events list -e {0}' to retrieve the " \
197+
events_message = "* Run 'cfy events list {0}' to retrieve the " \
198198
"execution's events/logs"
199199
original_timeout = timeout
200200
logger.info('Executing workflow `{0}` on deployment `{1}`'
@@ -297,7 +297,7 @@ def manager_start(workflow_id,
297297
workflow_id, deployment_id, e.execution_id, original_timeout))
298298

299299
events_tail_message = "* Run 'cfy events list --tail " \
300-
"--execution-id {0}' to retrieve the " \
300+
"{0}' to retrieve the " \
301301
"execution's events/logs"
302302
logger.info(events_tail_message.format(e.execution_id))
303303
raise SuppressedCloudifyCliError()

0 commit comments

Comments
 (0)