From b1f4849b34267d7c937600e777b79d9455266df1 Mon Sep 17 00:00:00 2001 From: Eric Price Date: Wed, 10 Oct 2007 01:53:49 -0400 Subject: [PATCH] Another bare except removed. svn path=/trunk/web/; revision=176 --- templates/main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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: -- 1.7.9.5