Call cmd and printing its output cmd: string
( self, *args)
| 390 | return None |
| 391 | |
| 392 | def cmdPrint( self, *args): |
| 393 | """Call cmd and printing its output |
| 394 | cmd: string""" |
| 395 | return self.cmd( *args, **{ 'verbose': True } ) |
| 396 | |
| 397 | def popen( self, *args, **kwargs ): |
| 398 | """Return a Popen() object in our namespace |
no test coverage detected