This commit is contained in:
flaskfarm
2022-10-14 15:38:44 +09:00
parent e0ab051c29
commit 206b116bf4
5 changed files with 9 additions and 21 deletions

View File

@@ -127,7 +127,6 @@ class SupportSubprocess(object):
tmp.append(f'"{x}"')
self.command = ' '.join(tmp)
iter_arg = ''
if platform.system() == 'Windows':
self.process = subprocess.Popen(self.command, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True, shell=self.shell, env=self.env, encoding='utf8')
else: