Don't attempt to kill processes twice

Was causing OSErrors because the process to kill no longer existed.
This commit is contained in:
Brandon Heller
2009-12-18 15:42:13 -08:00
parent 345bf7cc29
commit 7c1d7c9f90
+1 -1
View File
@@ -539,7 +539,7 @@ class Network( object ):
print print
print "*** Stopping controller" print "*** Stopping controller"
for controller in self.controllers: for controller in self.controllers:
controller.stop(); controller.terminate() controller.stop();
print print
print "*** Test complete" print "*** Test complete"
def runTest( self, test ): def runTest( self, test ):