From da29c0eaaaea794f1ab1b3478cd8f50c0eb2bbd3 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 27 Mar 2022 13:12:25 -0400 Subject: [PATCH] Using a list with extend instead of append --- op25Handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op25Handler.py b/op25Handler.py index e846008..9468833 100644 --- a/op25Handler.py +++ b/op25Handler.py @@ -71,7 +71,7 @@ class OP25Handler(threading.Thread): print(p25_kwargs) - self.OP25Proc = subprocess.Popen(p25_kwargs, shell=False, stdout=subprocess.STDOUT, stderr=subprocess.STDOUT, + self.OP25Proc = subprocess.Popen(p25_kwargs, shell=False, cwd=self.OP25Dir) #os.chdir(cwd)