From f89d9a4d6bbbbcd659f46a5615d93ed0101ef74f Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Thu, 22 Mar 2012 14:43:52 -0700 Subject: [PATCH] Fix typo inadvertently saved in editor. --- examples/limit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/limit.py b/examples/limit.py index 64d3dea..79e0178 100755 --- a/examples/limit.py +++ b/examples/limit.py @@ -42,7 +42,7 @@ def limit( bw=10, cpu=.4 ): myTopo = TreeTopo( depth=1, fanout=2 ) for sched in 'rt', 'cfs': print '*** Testing with', sched, 'bandwidth limiting' - host = custom( git CPULimitedHost, sched=sched, cpu=cpu ) + host = custom( CPULimitedHost, sched=sched, cpu=cpu ) net = Mininet( topo=myTopo, intf=intf, host=host ) net.start() testLinkLimit( net, bw=bw )