diff options
author | David Baker <dave@matrix.org> | 2016-10-19 11:28:56 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-10-19 11:28:56 +0100 |
commit | a7f48320b18ecfb7dce23a153fb2ade9de481aaa (patch) | |
tree | a1722ba6980bb8066e948013e2bfb2ec2a660f26 /synapse/app/synctl.py | |
parent | Convert emails to lowercase when storing (diff) | |
parent | Merge pull request #1174 from matrix-org/erikj/email_push_noop (diff) | |
download | synapse-a7f48320b18ecfb7dce23a153fb2ade9de481aaa.tar.xz |
Merge remote-tracking branch 'origin/develop' into dbkr/password_reset_case_insensitive
Diffstat (limited to 'synapse/app/synctl.py')
-rwxr-xr-x | synapse/app/synctl.py | 2 |
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" |