summary refs log tree commit diff
diff options
context:
space:
mode:
authorJorik Schellekens <joriks@matrix.org>2019-06-14 13:03:46 +0100
committerJorik Schellekens <joriks@matrix.org>2019-06-14 13:03:46 +0100
commitd8db29c4818829df7a887cedf40b1e2ac49631e7 (patch)
tree8caadf3362243084fef8485d2596150767b9e1b4
parentUpdates to the federation_client script (#5447) (diff)
downloadsynapse-d8db29c4818829df7a887cedf40b1e2ac49631e7.tar.xz
Use python3 in the demo
-rwxr-xr-xdemo/start.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/demo/start.sh b/demo/start.sh
index c4a1328a6f..5c3a8fe61f 100755
--- a/demo/start.sh
+++ b/demo/start.sh
@@ -21,7 +21,7 @@ for port in 8080 8081 8082; do
     pushd demo/$port
 
     #rm $DIR/etc/$port.config
-    python -m synapse.app.homeserver \
+    python3 -m synapse.app.homeserver \
         --generate-config \
         -H "localhost:$https_port" \
         --config-path "$DIR/etc/$port.config" \
@@ -55,7 +55,7 @@ for port in 8080 8081 8082; do
         echo "report_stats: false" >> $DIR/etc/$port.config
     fi
 
-    python -m synapse.app.homeserver \
+    python3 -m synapse.app.homeserver \
         --config-path "$DIR/etc/$port.config" \
         -D \
         -vv \