(command, *args)
| 36 | |
| 37 | |
| 38 | def execute_command_nonblocking(command, *args): |
| 39 | expanded_args = [] |
| 40 | for a in args: |
| 41 | expanded_args += a |
| 42 | try: |
| 43 | sp = subprocess.Popen([command, expanded_args], shell=True, |
| 44 | stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 45 | except: |
| 46 | pass |
| 47 | |
| 48 | |
| 49 | def Launcher2(): |