diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2015-12-04 09:29:45 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-12-04 09:29:45 -0800 |
commit | 894896f6ce0d6f60093a694e142658fde706aff0 (patch) | |
tree | b1a0f72d5c77f5c8e29bb8b608881b1399d315fe | |
parent | 1b086d150086af027810c0846298d1550aa59268 (diff) |
Add missing versionadded note to new exception class
-rw-r--r-- | paramiko/ssh_exception.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py index 02f3e52e..016a411e 100644 --- a/paramiko/ssh_exception.py +++ b/paramiko/ssh_exception.py @@ -156,6 +156,8 @@ class NoValidConnectionsError(socket.error): It is implied/assumed that all the errors given to a single instance of this class are from connecting to the same hostname + port (and thus that the differences are in the resolution of the hostname - e.g. IPv4 vs v6). + + .. versionadded:: 1.16 """ def __init__(self, errors): """ |