diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2015-03-05 09:55:36 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-03-05 10:10:45 -0800 |
commit | cfeca480db0116c5c8d95ba1aaa9e5e5e02951ed (patch) | |
tree | d648b31dd31b3e1ebc2fdee4044b3aaa6b223ac5 | |
parent | 136e0deef9c949a1b223244b696e6d870cc12e34 (diff) |
Error message langauge tweak
-rw-r--r-- | paramiko/ssh_exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py index 1fbebde8..2e09c6d6 100644 --- a/paramiko/ssh_exception.py +++ b/paramiko/ssh_exception.py @@ -161,7 +161,7 @@ class NoValidConnectionsError(socket.error): addrs = errors.keys() body = ', '.join([x[0] for x in addrs[:-1]]) tail = addrs[-1][0] - msg = "Unable to connect to port {0} at {1} or {2}" + msg = "Unable to connect to port {0} on {1} or {2}" super(NoValidConnectionsError, self).__init__( None, # stand-in for errno msg.format(addrs[0][1], body, tail) |