[virt-tools-list] [PATCH 1/5] virt-manager: refresh the storage pool browse list when updated

Giuseppe Scrivano gscrivan at redhat.com
Tue Aug 13 12:26:25 UTC 2013


The commit b044dd renamed vmmStoragePool.uuid to vmmStoragePool._uuid,
causing this error:

Traceback (most recent call last):
  File "virtManager/storagebrowse.py", line 280, in refresh_current_pool
    self.refresh_storage_pool(None, cp.get_uuid())
  File "virtManager/storagebrowse.py", line 243, in refresh_storage_pool
    if curpool.uuid != uuid:
AttributeError: 'vmmStoragePool' object has no attribute 'uuid'

Signed-off-by: Giuseppe Scrivano <gscrivan at redhat.com>
---
 virtManager/storagebrowse.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtManager/storagebrowse.py b/virtManager/storagebrowse.py
index 3ae8593..7374637 100644
--- a/virtManager/storagebrowse.py
+++ b/virtManager/storagebrowse.py
@@ -240,7 +240,7 @@ class vmmStorageBrowser(vmmGObjectUI):
         pool_list = self.widget("pool-list")
         virtManager.host.refresh_pool_in_list(pool_list, self.conn, uuid)
         curpool = self.current_pool()
-        if curpool.uuid != uuid:
+        if curpool.get_uuid() != uuid:
             return
 
         # Currently selected pool changed state: force a 'pool_selected' to
-- 
1.8.3.1




More information about the virt-tools-list mailing list