Skip to content
Snippets Groups Projects
Commit c57f8711 authored by Pedro Larroy's avatar Pedro Larroy
Browse files

Use sys.executable instead of hardcoded python. fixes #1161

parent e779ee0e
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ import subprocess
import sys
import yaml
SYNAPSE = ["python", "-B", "-m", "synapse.app.homeserver"]
SYNAPSE = [sys.executable, "-B", "-m", "synapse.app.homeserver"]
GREEN = "\x1b[1;32m"
RED = "\x1b[1;31m"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment