Print message if instance is successfully deleted

Change-Id: I0057a1c906083e1a379a0d15a3c783823f49bf4c
Closes-bug: 1312087
This commit is contained in:
liyingjun 2014-04-25 23:02:11 +08:00
parent 9752eeedad
commit b23c97d634
1 changed files with 1 additions and 0 deletions

View File

@ -1526,6 +1526,7 @@ def do_delete(cs, args):
for server in args.server:
try:
_find_server(cs, server).delete()
print(_("Server %s has been successfully deleted.") % server)
except Exception as e:
failure_count += 1
print(e)