Skip to content
Snippets Groups Projects
Commit c49b216c authored by Bob Lantz's avatar Bob Lantz
Browse files

Set default printPid back to True

parent 16ddf656
No related branches found
No related tags found
No related merge requests found
......@@ -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 ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment