From 23dfbe4ae2b3ac728fa28eb359b052e440da3102 Mon Sep 17 00:00:00 2001 From: Brian O'Connor <bocon@onlab.us> Date: Fri, 21 Nov 2014 18:35:37 -0800 Subject: [PATCH] explicit param call in cli command --- mininet/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/cli.py b/mininet/cli.py index aae0a6f2..159a9bf7 100644 --- a/mininet/cli.py +++ b/mininet/cli.py @@ -367,7 +367,7 @@ def do_switch( self, line ): if command == 'start': self.mn.get( sw ).start( self.mn.controllers ) elif command == 'stop': - self.mn.get( sw ).stop( False ) + self.mn.get( sw ).stop( deleteIntfs=False ) else: error( 'invalid command: switch <switch name> {start, stop}\n' ) -- GitLab