Disable hidden logs for windows (#1161)

This commit is contained in:
Elijah Ahianyo 2023-06-07 18:50:47 +00:00 committed by GitHub
parent 278222db8f
commit f11fd25448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,8 +48,8 @@ def run_process_and_launch_url(
cwd=constants.WEB_DIR,
env=os.environ,
stderr=subprocess.STDOUT,
stdout=subprocess.PIPE,
universal_newlines=True,
stdout=None if platform.system() == "Windows" else subprocess.PIPE,
universal_newlines=None if platform.system() == "Windows" else True,
)
current_time = datetime.now()