summaryrefslogtreecommitdiff
path: root/paramiko/ssh_exception.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 12:16:11 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 12:16:11 -0800
commitf836c98e5c5c859cb9d0189aed51dd5a884ee072 (patch)
treec9e2bf365c9f07d52b129dd32b1108c1c6b327af /paramiko/ssh_exception.py
parentf09b562fa874d3358daa7dfd4ca7f2c8b5d47b68 (diff)
downloadparamiko-f836c98e5c5c859cb9d0189aed51dd5a884ee072.tar.gz
Don't actually need :class: anywhere now
Diffstat (limited to 'paramiko/ssh_exception.py')
-rw-r--r--paramiko/ssh_exception.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/ssh_exception.py b/paramiko/ssh_exception.py
index 5d9f43c5..0e78287c 100644
--- a/paramiko/ssh_exception.py
+++ b/paramiko/ssh_exception.py
@@ -82,7 +82,7 @@ class PartialAuthentication (AuthenticationException):
class ChannelException (SSHException):
"""
- Exception raised when an attempt to open a new :class:`.Channel` fails.
+ Exception raised when an attempt to open a new `.Channel` fails.
:ivar code: the error code returned by the server
:type code: int
@@ -101,9 +101,9 @@ class BadHostKeyException (SSHException):
:ivar hostname: the hostname of the SSH server
:type hostname: str
:ivar key: the host key presented by the server
- :type key: :class:`.PKey`
+ :type key: `.PKey`
:ivar expected_key: the host key expected
- :type expected_key: :class:`.PKey`
+ :type expected_key: `.PKey`
.. versionadded:: 1.6
"""