From 5c24e18639876428ae74379b0fb22f6005bdb3ac Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Fri, 20 Aug 2010 08:48:10 -0700 Subject: [PATCH] Disable (broken) scripting for interactive commands. --- mininet/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mininet/cli.py b/mininet/cli.py index a01f641..3fbedd1 100644 --- a/mininet/cli.py +++ b/mininet/cli.py @@ -328,7 +328,8 @@ class CLI( Cmd ): while True: try: bothPoller.poll() - if self.inputFile: + # XXX BL: this doesn't quite do what we want. + if False and self.inputFile: key = self.inputFile.read( 1 ) if key is not '': node.write(key)