0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 10:18:54 +02:00

Don't write bytecode

This commit is contained in:
Erik Johnston 2015-02-17 10:54:06 +00:00
parent 0421eb84ac
commit ea1d6c16cd
2 changed files with 4 additions and 2 deletions

View file

@ -14,6 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
sys.dont_write_bytecode = True
from synapse.storage import prepare_database, UpgradeDatabaseException
from synapse.server import HomeServer
@ -48,7 +51,6 @@ import synapse
import logging
import os
import re
import sys
import sqlite3
import syweb

View file

@ -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"