Add missing space in client ssh error message

This commit is contained in:
Scott Kuhl 2020-10-20 13:38:37 -04:00
parent 4deee45bc6
commit 512a3a8d96

View File

@ -552,7 +552,7 @@ def _main(tcp_listener, udp_listener, fw, ssh_cmd, remotename,
rv = serverproc.poll()
# poll returns None if process hasn't exited.
if rv is not None:
raise Fatal('ssh connection to server (pid %d) exited'
raise Fatal('ssh connection to server (pid %d) exited '
'with returncode %d' % (serverproc.pid, rv))
while 1: