Revert inadvertent print in node.py

This commit is contained in:
Bob Lantz
2011-06-29 19:36:44 -07:00
parent 2668484163
commit 5cc808286a
+1 -1
View File
@@ -601,7 +601,7 @@ class OVSKernelSwitch( Switch ):
raise Exception( 'only contiguous, one-indexed port ranges '
'supported: %s' % self.intfs )
intfs = [ self.intfs[ port ] for port in ports ]
self.cmdPrint( 'ovs-dpctl', 'add-if', self.dp, ' '.join( intfs ) )
self.cmd( 'ovs-dpctl', 'add-if', self.dp, ' '.join( intfs ) )
# Run protocol daemon
controller = controllers[ 0 ]
self.cmd( 'ovs-openflowd ' + self.dp +