Submit command
(pCommand)
| 103 | return lFound |
| 104 | |
| 105 | def submitnow(pCommand): |
| 106 | ''' |
| 107 | Submit command |
| 108 | ''' |
| 109 | lCommand = '"' + pCommand + '"' |
| 110 | #print '\n\nSubmitting:', lCommand |
| 111 | subprocess.Popen(lCommand, shell=True) |
| 112 | |
| 113 | |
| 114 |