From 68ab7a33fc1ee2115c4d1310967c1593ead804a9 Mon Sep 17 00:00:00 2001 From: Douglas Benn Date: Fri, 21 Oct 2022 20:56:13 +0100 Subject: [PATCH] Edge Build Crash Fix --- eel/edge.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eel/edge.py b/eel/edge.py index cef818aa..d7813715 100644 --- a/eel/edge.py +++ b/eel/edge.py @@ -2,16 +2,16 @@ import subprocess as sps import sys -name = 'Edge' +name = "Edge" def run(_path, options, start_urls): - cmd = 'start microsoft-edge:{}'.format(start_urls[0]) - sps.Popen(cmd, stdout=sys.stdout, stderr=sys.stderr, stdin=sps.PIPE, shell=True) + cmd = "start microsoft-edge:{}".format(start_urls[0]) + sps.Popen(cmd, stdout=sps.PIPE, stderr=sps.PIPE, stdin=sps.PIPE, shell=True) def find_path(): - if platform.system() == 'Windows': + if platform.system() == "Windows": return True return False