From c49b216c1f5f7899440fbd17f4ed3d53abce4cbc Mon Sep 17 00:00:00 2001 From: Bob Lantz <rlantz@cs.stanford.edu> Date: Mon, 7 Jul 2014 21:55:34 -0700 Subject: [PATCH] Set default printPid back to True --- mininet/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mininet/node.py b/mininet/node.py index 9db22b49..9e50319e 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -219,7 +219,7 @@ def sendCmd( self, *args, **kwargs ): args: command and arguments, or string printPid: print command's PID?""" assert not self.waiting - printPid = kwargs.get( 'printPid', False ) + printPid = kwargs.get( 'printPid', True ) # Allow sendCmd( [ list ] ) if len( args ) == 1 and type( args[ 0 ] ) is list: cmd = args[ 0 ] -- GitLab