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 17:29:55 +0000
committerErik Johnston <erik@matrix.org>2015-02-17 17:29:55 +0000
commit20e3172f38c10e03bb66a782e17c30f42948f8e8 (patch)
treeb5a2402b3423311337de73b770a25b758e3125f1 /synapse/app/synctl.py
parentMerge pull request #76 from matrix-org/consumeErrors (diff)
parentDon't write bytecode (diff)
downloadsynapse-20e3172f38c10e03bb66a782e17c30f42948f8e8.tar.xz
Merge pull request #75 from matrix-org/dont_write_bytecode
Don't write bytecode
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 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"