summaryrefslogtreecommitdiff
path: root/paramiko/hostkeys.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 12:15:29 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 12:15:29 -0800
commitf09b562fa874d3358daa7dfd4ca7f2c8b5d47b68 (patch)
treecbfaf1d61ad359bf52781d61654da67662a2eacd /paramiko/hostkeys.py
parent3f9270c0be18b09cd39279730eac125776adbedc (diff)
downloadparamiko-f09b562fa874d3358daa7dfd4ca7f2c8b5d47b68.tar.gz
Replace accidental class-refs on local method-refs
Diffstat (limited to 'paramiko/hostkeys.py')
-rw-r--r--paramiko/hostkeys.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/hostkeys.py b/paramiko/hostkeys.py
index 704fe7e3..cdf6d5c1 100644
--- a/paramiko/hostkeys.py
+++ b/paramiko/hostkeys.py
@@ -112,7 +112,7 @@ class HostKeys (UserDict.DictMixin):
verify server keys during SSH negotiation.
A HostKeys object can be treated like a dict; any dict lookup is equivalent
- to calling :class:`lookup`.
+ to calling `lookup`.
.. versionadded:: 1.5.3
"""
@@ -156,7 +156,7 @@ class HostKeys (UserDict.DictMixin):
``os.path.expanduser("~/.ssh/known_hosts")``.
If this method is called multiple times, the host keys are merged,
- not cleared. So multiple calls to ``load`` will just call :class:`add`,
+ not cleared. So multiple calls to `load` will just call `add`,
replacing any existing entries and adding new ones.
:param filename: name of the file to read host keys from