Skip to content

Commit 0a30c6b

Browse files
committed
fixed incompatibility with mac
1 parent 356690e commit 0a30c6b

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/groupsplit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_client():
4040

4141
webbrowser.open_new(uri)
4242

43-
proc = subprocess.Popen(['./server.py'], stdout=subprocess.PIPE, shell=True)
43+
proc = subprocess.Popen(['python', 'server.py'], stdout=subprocess.PIPE, shell=True)
4444
stdout, stderr = proc.communicate()
4545
if stderr:
4646
exit(stderr)

src/server.py

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#! /usr/bin/python
21
from flask import Flask, request
32
app = Flask(__name__)
43

0 commit comments

Comments
 (0)