Skip to content

Commit

Permalink
Edge Build Crash Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-benn authored and samuelhwilliams committed Feb 13, 2023
1 parent 5051761 commit 68ab7a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eel/edge.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 68ab7a3

Please sign in to comment.