From 2e7d0d4934a216353f86ccba802f3a546fd64092 Mon Sep 17 00:00:00 2001 From: Brian O'Connor Date: Tue, 27 Aug 2013 14:01:39 -0700 Subject: [PATCH] fixed indent issue with examples/controllers.py --- examples/controllers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/controllers.py b/examples/controllers.py index 1fcefb1..d3694bc 100755 --- a/examples/controllers.py +++ b/examples/controllers.py @@ -29,8 +29,7 @@ class MultiSwitch( OVSSwitch ): topo = TreeTopo( depth=2, fanout=2 ) net = Mininet( topo=topo, switch=MultiSwitch, build=False ) for c in [ c0, c1 ]: - net.addController(c) - + net.addController(c) net.build() net.start() CLI( net )