diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-03-08 11:08:20 +0000 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-03-08 11:08:20 +0000 |
commit | ea72bd960052f95599150a287a7fccbe668e2c23 (patch) | |
tree | 8ca401db42e800c7393fb3df3919bf754b918786 /synapse/app/homeserver.py | |
parent | Merge pull request #627 from matrix-org/dbkr/guest_reuse_send_user_id (diff) | |
parent | Use syntax that works on both py2.7 and py3 (diff) | |
download | synapse-ea72bd960052f95599150a287a7fccbe668e2c23.tar.xz |
Merge pull request #631 from matrix-org/markjh/py3v1
Use syntax that's valid on both py2.7 and py3
Diffstat (limited to 'synapse/app/homeserver.py')
-rwxr-xr-x | synapse/app/homeserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 021dc1d610..fcdc8e6e10 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -722,7 +722,7 @@ def run(hs): if hs.config.daemonize: if hs.config.print_pidfile: - print hs.config.pid_file + print (hs.config.pid_file) daemon = Daemonize( app="synapse-homeserver", |