diff --git a/mininet/node.py b/mininet/node.py index 9db22b4..9e50319 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -219,7 +219,7 @@ class Node( object ): 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 ]