summaryrefslogtreecommitdiffstats
path: root/sshuttle
diff options
context:
space:
mode:
authorScott Kuhl <kuhl@mtu.edu>2020-10-20 13:38:37 -0400
committerScott Kuhl <kuhl@mtu.edu>2020-10-20 13:38:37 -0400
commit512a3a8d96837d44ea6527bbb829f771c6ba3440 (patch)
treede7f9062041d5f8ca99ff180d812b3aefef4b52f /sshuttle
parent4deee45bc630991e5e59e3bdcb461060f94767e7 (diff)
Add missing space in client ssh error message
Diffstat (limited to 'sshuttle')
-rw-r--r--sshuttle/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshuttle/client.py b/sshuttle/client.py
index fb3e67e..a66c378 100644
--- a/sshuttle/client.py
+++ b/sshuttle/client.py
@@ -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: