diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-21 15:30:26 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-21 15:30:26 -0800 |
commit | 8c7eafdfcd00e7da483cfd1634683c67ea77b248 (patch) | |
tree | 01ad6b8e66162cfa326f2e008e043e62454c29bd | |
parent | 0e9a5a4b463fbbc8518e4679850207e31fbd8a0f (diff) |
Exceptions
-rw-r--r-- | paramiko/ssh_exception.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py index 0e78287c..56dec86a 100644 --- a/paramiko/ssh_exception.py +++ b/paramiko/ssh_exception.py @@ -16,10 +16,6 @@ # along with Paramiko; if not, write to the Free Software Foundation, Inc., # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. -""" -Exceptions defined by paramiko. -""" - class SSHException (Exception): """ @@ -52,9 +48,9 @@ class BadAuthenticationType (AuthenticationException): the server isn't allowing that type. (It may only allow public-key, for example.) - :ivar allowed_types: list of allowed authentication types provided by the - server (possible values are: ``"none"``, ``"password"``, and - ``"publickey"``). + :ivar allowed_types: + list of allowed authentication types provided by the server (possible + values are: ``"none"``, ``"password"``, and ``"publickey"``). :type allowed_types: list .. versionadded:: 1.1 |