Disable hidden logs for windows (#1161)
This commit is contained in:
parent
278222db8f
commit
f11fd25448
@ -48,8 +48,8 @@ def run_process_and_launch_url(
|
|||||||
cwd=constants.WEB_DIR,
|
cwd=constants.WEB_DIR,
|
||||||
env=os.environ,
|
env=os.environ,
|
||||||
stderr=subprocess.STDOUT,
|
stderr=subprocess.STDOUT,
|
||||||
stdout=subprocess.PIPE,
|
stdout=None if platform.system() == "Windows" else subprocess.PIPE,
|
||||||
universal_newlines=True,
|
universal_newlines=None if platform.system() == "Windows" else True,
|
||||||
)
|
)
|
||||||
|
|
||||||
current_time = datetime.now()
|
current_time = datetime.now()
|
||||||
|
Loading…
Reference in New Issue
Block a user