From a650b8e6572ceba21f7493817fdceb0e1186695b Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Sat, 10 Apr 2010 22:04:55 -0700 Subject: [PATCH] Fixed catch: typo. --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index cfe4d69..aab7e53 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -177,7 +177,7 @@ class Node( object ): if self.lastPid: try: os.kill( self.lastPid, sig ) - except e, Exception: + except Exception: pass def monitor( self ):