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 7700a06 commit 6839f77Copy full SHA for 6839f77
SoftLayer/CLI/virt/cancel.py
@@ -21,7 +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
- vs = vsi.cancel_instance(vs_id)
+ virtual_server = vsi.cancel_instance(vs_id)
25
26
- if vs:
+ if virtual_server:
27
env.fout("The virtual server instance: {} was cancelled.".format(vs_id))
0 commit comments