From 16e93d3ac5e2af49841829122dfd6046421e4ada Mon Sep 17 00:00:00 2001 From: Ainur Gimadeev Date: Wed, 23 Mar 2022 11:17:15 +0300 Subject: [PATCH] Fix running Flask and Django projects on windows --- hstest/testing/process_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hstest/testing/process_wrapper.py b/hstest/testing/process_wrapper.py index bc6a777b..abc033db 100644 --- a/hstest/testing/process_wrapper.py +++ b/hstest/testing/process_wrapper.py @@ -62,7 +62,7 @@ def start(self): # to communicate between processes self._use_byte_stream = True - args = ['cmd', '/c'] + args + args = ['cmd', '/c'] + args self.process = subprocess.Popen( args,