Fixining inconsistent independent thread app start persistence
This commit is contained in:
parent
3e1966c17d
commit
3c636b3da8
|
@ -43,8 +43,9 @@ class Launcher:
|
||||||
if use_os_system:
|
if use_os_system:
|
||||||
os.system(command)
|
os.system(command)
|
||||||
else:
|
else:
|
||||||
DEVNULL = open(os.devnull, 'w')
|
# DEVNULL = open(os.devnull, 'w')
|
||||||
subprocess.Popen(command, cwd=start_dir, shell=use_shell, start_new_session=True, stdout=DEVNULL, stderr=DEVNULL, close_fds=True)
|
# subprocess.Popen(command, cwd=start_dir, shell=use_shell, start_new_session=True, stdout=DEVNULL, stderr=DEVNULL, close_fds=True)
|
||||||
|
subprocess.Popen(command, cwd=start_dir, shell=use_shell, start_new_session=True, stdout=None, stderr=None, close_fds=True)
|
||||||
|
|
||||||
|
|
||||||
def remux_video(self, hash, file):
|
def remux_video(self, hash, file):
|
||||||
|
|
Loading…
Reference in New Issue