Set default printPid back to True

This commit is contained in:
Bob Lantz
2014-07-07 21:55:34 -07:00
parent 16ddf6560a
commit c49b216c1f
+1 -1
View File
@@ -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 ]