From c4fc630413b79f91b0c300678c79532fe4d5053a Mon Sep 17 00:00:00 2001 From: Bob Lantz <rlantz@cs.stanford.edu> Date: Wed, 19 Nov 2014 09:18:05 -0800 Subject: [PATCH] Correctly call cli() rather than CLI() --- bin/mn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/mn b/bin/mn index 5cfef820..048a003d 100755 --- a/bin/mn +++ b/bin/mn @@ -338,13 +338,13 @@ class MininetRunner( object ): mn.ping() mn.iperf() elif test == 'cli': - CLI( mn ) + cli( mn ) elif test != 'build': mn.waitConnected() getattr( mn, test )() if self.options.post: - CLI( mn, script=self.options.post ) + cli( mn, script=self.options.post ) mn.stop() -- GitLab