diff --git a/eel/edge.py b/eel/edge.py index 7f2dab1e..95c674c1 100644 --- a/eel/edge.py +++ b/eel/edge.py @@ -10,8 +10,7 @@ def run(_path: str, options: OptionsDictT, start_urls: List[str]) -> None: cmd = 'start microsoft-edge:{}'.format(start_urls[0]) - sps.Popen(cmd, stdout=sys.stdout, stderr=sys.stderr, stdin=sps.PIPE, shell=True) - + sps.Popen(cmd, stdout=sps.PIPE, stderr=sps.PIPE, stdin=sps.PIPE, shell=True) def find_path() -> bool: if platform.system() == 'Windows':