From 2a08dec648e7c66d23ed5bb81d673e07ba68cec3 Mon Sep 17 00:00:00 2001 From: Bob Lantz <rlantz@cs.stanford.edu> Date: Tue, 15 Jul 2014 08:50:30 -0700 Subject: [PATCH] Hack to avoid failing version check... ;-/ --- mininet/topolib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/topolib.py b/mininet/topolib.py index 4c15e913..8e3b3a4b 100644 --- a/mininet/topolib.py +++ b/mininet/topolib.py @@ -46,7 +46,7 @@ def __init__( self, x, y, *args, **kwargs ): Topo.__init__( self, *args, **kwargs ) if x < 3 or y < 3: raise Exception( 'Please use 3x3 or greater for compatibility ' - 'with Mininet 2.1.0' ) + 'with 2.1' ) hosts, switches, dpid = {}, {}, 0 # Create and wire interior for i in range( 0, x ): -- GitLab