summary refs log tree commit diff
path: root/synapse/app/synctl.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-10-19 11:28:56 +0100
committerDavid Baker <dave@matrix.org>2016-10-19 11:28:56 +0100
commita7f48320b18ecfb7dce23a153fb2ade9de481aaa (patch)
treea1722ba6980bb8066e948013e2bfb2ec2a660f26 /synapse/app/synctl.py
parentConvert emails to lowercase when storing (diff)
parentMerge pull request #1174 from matrix-org/erikj/email_push_noop (diff)
downloadsynapse-a7f48320b18ecfb7dce23a153fb2ade9de481aaa.tar.xz
Merge remote-tracking branch 'origin/develop' into dbkr/password_reset_case_insensitive
Diffstat (limited to 'synapse/app/synctl.py')
-rwxr-xr-xsynapse/app/synctl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/synctl.py b/synapse/app/synctl.py
index bb41962d47..c045588866 100755
--- a/synapse/app/synctl.py
+++ b/synapse/app/synctl.py
@@ -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"