diff options
author | sohamg <sohamg2@gmail.com> | 2019-06-10 19:09:14 +0530 |
---|---|---|
committer | sohamg <sohamg2@gmail.com> | 2019-06-10 19:09:14 +0530 |
commit | ca7abb129c7a50066cbb39e6cfd4a198e7022d3b (patch) | |
tree | abd377ea6fdcbd2dd9429f2f7887ca885ec107b5 /synctl | |
parent | Edited description to note that the arg will not work with daemonize set in t... (diff) | |
download | synapse-ca7abb129c7a50066cbb39e6cfd4a198e7022d3b.tar.xz |
Accidentally reversed pep8 fixed before, fixed now
Diffstat (limited to 'synctl')
-rwxr-xr-x | synctl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synctl b/synctl index 665eda5132..30d751236f 100755 --- a/synctl +++ b/synctl @@ -69,7 +69,7 @@ def abort(message, colour=RED, stream=sys.stderr): sys.exit(1) -def start(configfile, daemonize = True): +def start(configfile, daemonize=True): write("Starting ...") args = SYNAPSE |