vmmCreate: Fixed an AttributeError created by 7fcdd61
When trying to create a new virtual machine an exception has been thrown: Error launching manager: 'vmmConnection' object has no attribute 'get_pretty_desc_active' Signed-off-by: Tal Kain <tal@kain.net>
This commit is contained in:
parent
0deff29ee7
commit
02e2fd9cd4
virtManager
|
@ -763,7 +763,7 @@ class vmmCreate(vmmGObjectUI):
|
|||
# Favor local connections over remote connections
|
||||
default = len(model)
|
||||
|
||||
model.append([connobj.get_uri(), connobj.get_pretty_desc_active()])
|
||||
model.append([connobj.get_uri(), connobj.get_pretty_desc()])
|
||||
|
||||
no_conns = (len(model) == 0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue