From 5cc808286a2f9235b701117c043f55f86390c462 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 29 Jun 2011 19:36:44 -0700 Subject: [PATCH] Revert inadvertent print in node.py --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 3d598dd..8286466 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -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 +