summary refs log tree commit diff
path: root/synapse/app/synctl.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-02-17 10:54:06 +0000
committerErik Johnston <erik@matrix.org>2015-02-17 10:54:06 +0000
commitea1d6c16cd2b91ec2980eef31446990cf305b796 (patch)
treec17ba13dc269066134962dfa4e6ea45a7e6fad6e /synapse/app/synctl.py
parentMerge pull request #73 from matrix-org/hotfixes-v0.7.0f (diff)
downloadsynapse-ea1d6c16cd2b91ec2980eef31446990cf305b796.tar.xz
Don't write bytecode
Diffstat (limited to '')
-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 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"