From e0df294c7e06512de6df0c4da791eb60c1815f2d Mon Sep 17 00:00:00 2001 From: Manuel Reul Date: Mon, 30 Oct 2023 21:01:28 +0000 Subject: [PATCH] Update file init_test.py --- testserver_o2b/models/init_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testserver_o2b/models/init_test.py b/testserver_o2b/models/init_test.py index 9e98c1f..d583292 100644 --- a/testserver_o2b/models/init_test.py +++ b/testserver_o2b/models/init_test.py @@ -15,7 +15,7 @@ class IrLogging(models.Model): def init(self): - p = subprocess.Popen('sh ./%s/testserver.sh',stdout=subprocess.PIPE,stderr=subprocess.PIPE) + p = subprocess.Popen('sh ./testserver.sh',stdout=subprocess.PIPE,stderr=subprocess.PIPE) results, errors = p.communicate() print( results) re.search('<(\d+)>', results).group(1)