From: Eric Price Date: Wed, 10 Oct 2007 05:53:49 +0000 (-0400) Subject: Another bare except removed. X-Git-Tag: sipb-xen-www/1~65 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/b1f4849b34267d7c937600e777b79d9455266df1 Another bare except removed. svn path=/trunk/web/; revision=176 --- diff --git a/templates/main.py b/templates/main.py index b809430..f64fe3d 100755 --- a/templates/main.py +++ b/templates/main.py @@ -511,10 +511,7 @@ def getDiskInfo(data_dict, machine): def deleteVM(machine): """Delete a VM.""" - try: - remctl('destroy', machine.name) - except: - pass + remctl('destroy', machine.name, err=True) transaction = ctx.current.create_transaction() delete_disk_pairs = [(machine.name, d.guest_device_name) for d in machine.disks] try: