From 494840c9087d67b97025d026713956d2bc96f1ae Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Mon, 13 Mar 2017 13:57:41 -0700 Subject: [PATCH] satisfy codecheck --- mininet/net.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mininet/net.py b/mininet/net.py index 87d5197..dac2480 100755 --- a/mininet/net.py +++ b/mininet/net.py @@ -145,7 +145,8 @@ class Mininet( object ): self.ipBase = ipBase self.ipBaseNum, self.prefixLen = netParse( self.ipBase ) hostIP = ( 0xffffffff >> self.prefixLen ) & self.ipBaseNum - self.nextIP = hostIP if hostIP > 0 else 1 # start for address allocation + # Start for address allocation + self.nextIP = hostIP if hostIP > 0 else 1 self.inNamespace = inNamespace self.xterms = xterms self.cleanup = cleanup