diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-11-18 15:48:30 +0000 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-11-18 15:48:30 +0000 |
commit | e9f587ecbaf5b60183d7c56108d76bb5f76a98f4 (patch) | |
tree | 5cf7df273b613b88902016722ca8f2d1c222cf19 /synapse/app/synctl.py | |
parent | Include room members' presence in room initialSync (diff) | |
parent | Null check when determining default power levels (diff) | |
download | synapse-e9f587ecbaf5b60183d7c56108d76bb5f76a98f4.tar.xz |
Merge remote-tracking branch 'origin/develop' into room-initial-sync
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 e85073b06b..abe055a64c 100755 --- a/synapse/app/synctl.py +++ b/synapse/app/synctl.py @@ -56,8 +56,8 @@ def main(): elif action == "stop": stop() elif action == "restart": - start() stop() + start() else: sys.stderr.write("Usage: %s [start|stop|restart]\n" % (sys.argv[0],)) sys.exit(1) |