593e13f1ce
virtinst-git-mac-prefix.diff virtman-git-error-reporting.diff virtman-git-explicit-python.diff OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=75
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,
|