21 lines
777 B
Diff
21 lines
777 B
Diff
|
|
||
|
Subject: delete: Properly raise 'undefine' errors
|
||
|
From: Cole Robinson crobinso@redhat.com Mon Aug 29 14:01:40 2011 -0400
|
||
|
Date: Mon Aug 29 14:01:40 2011 -0400:
|
||
|
Git: db21a2a8331c8518f27b136d0013a56cf84df7e6
|
||
|
|
||
|
|
||
|
Index: virt-manager-0.9.0/src/virtManager/delete.py
|
||
|
===================================================================
|
||
|
--- virt-manager-0.9.0.orig/src/virtManager/delete.py
|
||
|
+++ virt-manager-0.9.0/src/virtManager/delete.py
|
||
|
@@ -183,7 +183,7 @@ class vmmDeleteDialog(vmmGObjectUI):
|
||
|
for errinfo in storage_errors:
|
||
|
storage_errstr += "%s\n%s\n" % (errinfo[0], errinfo[1])
|
||
|
|
||
|
- if not storage_errstr:
|
||
|
+ if not storage_errstr and not details:
|
||
|
return
|
||
|
|
||
|
# We had extra storage errors. If there was another error message,
|