diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2015-06-11 16:42:07 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-06-11 16:42:07 -0700 |
commit | dd9135b24174ba8b02e0982ce2f9026cd22bef21 (patch) | |
tree | 7970a706490d61cc043c05065e51446db330ffca | |
parent | 54415207d186155afab6bd3a8571a70587a85fab (diff) |
Tweak docstring
-rw-r--r-- | paramiko/ssh_exception.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py index 2e09c6d6..d053974a 100644 --- a/paramiko/ssh_exception.py +++ b/paramiko/ssh_exception.py @@ -140,9 +140,9 @@ class NoValidConnectionsError(socket.error): This exception class wraps multiple "real" underlying connection errors, all of which represent failed connection attempts. Because these errors are not guaranteed to all be of the same error type (i.e. different errno, - class, message, etc) we expose a single unified error message and a - ``None`` errno so that instances of this class match most normal handling - of `socket.error` objects. + `socket.error` subclass, message, etc) we expose a single unified error + message and a ``None`` errno so that instances of this class match most + normal handling of `socket.error` objects. To see the wrapped exception objects, access the ``errors`` attribute. ``errors`` is a dict whose keys are address tuples (e.g. ``('127.0.0.1', |