We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7591d commit 7700a06Copy full SHA for 7700a06
SoftLayer/CLI/virt/cancel.py
@@ -21,4 +21,7 @@ def cli(env, identifier):
21
if not (env.skip_confirmations or formatting.no_going_back(vs_id)):
22
raise exceptions.CLIAbort('Aborted')
23
24
- vsi.cancel_instance(vs_id)
+ vs = vsi.cancel_instance(vs_id)
25
+
26
+ if vs:
27
+ env.fout("The virtual server instance: {} was cancelled.".format(vs_id))
0 commit comments