Small bug in virtual network population.

This commit is contained in:
Cole Robinson
2008-07-31 16:02:39 -04:00
parent 0ff43979a6
commit d5fdec4801
+1 -1
View File
@@ -650,7 +650,7 @@ class vmmConnection(gobject.GObject):
if not origNets.has_key(uuid): if not origNets.has_key(uuid):
currentNets[uuid] = vmmNetwork(self.config, self, net, currentNets[uuid] = vmmNetwork(self.config, self, net,
uuid, False) uuid, False)
newNets[uuid] = currentNets[uuid] newNets.append(uuid)
else: else:
currentNets[uuid] = origNets[uuid] currentNets[uuid] = origNets[uuid]
if currentNets[uuid].is_active(): if currentNets[uuid].is_active():