Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.

Commit fade881

Browse files
committed
Edge Build Crash Fix
1 parent 79607a8 commit fade881

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eel/edge.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
import subprocess as sps
33
import sys
44

5-
name = 'Edge'
5+
name = "Edge"
66

77

88
def run(_path, options, start_urls):
9-
cmd = 'start microsoft-edge:{}'.format(start_urls[0])
10-
sps.Popen(cmd, stdout=sys.stdout, stderr=sys.stderr, stdin=sps.PIPE, shell=True)
9+
cmd = "start microsoft-edge:{}".format(start_urls[0])
10+
sps.Popen(cmd, stdout=sps.PIPE, stderr=sps.PIPE, stdin=sps.PIPE, shell=True)
1111

1212

1313
def find_path():
14-
if platform.system() == 'Windows':
14+
if platform.system() == "Windows":
1515
return True
1616

1717
return False

0 commit comments

Comments
 (0)