From b14b1ee44126289290759b71612ade84b1145897 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Tue, 30 Mar 2010 16:09:43 -0700 Subject: [PATCH] Remove unneeded '-' in '-n', which was causing error message. --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 80eda2d..6dfebff 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -69,7 +69,7 @@ class Node( object ): opts = '-cdp' self.inNamespace = inNamespace if self.inNamespace: - opts += '-n' + opts += 'n' cmd = [ 'mnexec', opts, 'bash', '-m' ] self.shell = Popen( cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=False )