diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-17 10:54:06 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-17 10:54:06 +0000 |
commit | ea1d6c16cd2b91ec2980eef31446990cf305b796 (patch) | |
tree | c17ba13dc269066134962dfa4e6ea45a7e6fad6e /synapse/app/synctl.py | |
parent | Merge pull request #73 from matrix-org/hotfixes-v0.7.0f (diff) | |
download | synapse-ea1d6c16cd2b91ec2980eef31446990cf305b796.tar.xz |
Don't write bytecode
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 363c20f994..3a70a248dc 100755 --- a/synapse/app/synctl.py +++ b/synapse/app/synctl.py @@ -19,7 +19,7 @@ import os import subprocess import signal -SYNAPSE = ["python", "-m", "synapse.app.homeserver"] +SYNAPSE = ["python", "-B", "-m", "synapse.app.homeserver"] CONFIGFILE = "homeserver.yaml" PIDFILE = "homeserver.pid" |