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:
Tal Kain 2014-07-07 22:53:54 +03:00 committed by Cole Robinson
parent 0deff29ee7
commit 02e2fd9cd4
1 changed files with 1 additions and 1 deletions
virtManager

View File

@ -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)