From 5791f32a2dc4cb0fa55cd084b515539d2908bdd5 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Fri, 26 Mar 2010 18:41:09 -0700 Subject: [PATCH] Fix --controller=remote --- bin/mn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mn b/bin/mn index a7e6ffb..63d9333 100755 --- a/bin/mn +++ b/bin/mn @@ -201,7 +201,7 @@ class MininetRunner( object ): host = HOSTS[ self.options.host ] controller = CONTROLLERS[ self.options.controller ] if self.options.controller == 'remote': - controller = lambda a, b: RemoteController( a, b, + controller = lambda a: RemoteController( a, defaultIP=self.options.ip, port=self.options.port )