From 1a52deeea6c583d965457a5dc5a27cdf4dd1ff74 Mon Sep 17 00:00:00 2001 From: Brandon Heller Date: Tue, 10 Aug 2010 02:05:20 -0700 Subject: [PATCH] Remove print statement left in --- mininet/node.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 759ee85..b22e9c7 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -547,7 +547,6 @@ class OVSKernelSwitch( Switch ): mac_str = ' --datapath-id=0000' + \ ''.join( self.defaultMAC.split( ':' ) ) + ' ' ports = sorted( self.ports.values() ) - print ports if len( ports ) != ports[ -1 ]: raise Exception( 'only contiguous, one-indexed port ranges ' 'supported: %s' % self.intfs )