From f239e87b0a9a6b9f964161489e091318139b85e3 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 27 Mar 2022 05:18:23 -0400 Subject: [PATCH] no space in debug emendation --- op25Handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op25Handler.py b/op25Handler.py index a000767..304d6bf 100644 --- a/op25Handler.py +++ b/op25Handler.py @@ -65,7 +65,7 @@ class OP25Handler(threading.Thread): os.chdir(self.OP25Dir) if self.HTTP_ENABLED: - p25_kwargs += "-l http:0.0.0.0:8080" + p25_kwargs += " -l http:0.0.0.0:8080" p25_stdout = subprocess.STDOUT self.OP25Proc = subprocess.Popen(p25_kwargs, shell=False, stdout=p25_stdout, stderr=p25_stderr)