No pipes or STDIN/STDOUT

This commit is contained in:
Logan Cusano
2022-03-28 01:46:50 -04:00
parent d97e51d960
commit 326da757cf

View File

@@ -63,8 +63,7 @@ class OP25Handler(threading.Thread):
print(f"OP25 Keyword Args: {p25_kwargs}")
self.OP25Proc = subprocess.Popen(p25_kwargs, executable=self.OP25EXE, shell=False, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=self.OP25Dir)
self.OP25Proc = subprocess.Popen(p25_kwargs, executable=self.OP25EXE, shell=False, cwd=self.OP25Dir)
def close_op25(self):
print(f"Closing OP25")