summaryrefslogtreecommitdiff
path: root/paramiko/sftp_si.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/sftp_si.py
parent3f9270c0be18b09cd39279730eac125776adbedc (diff)
downloadparamiko-f09b562fa874d3358daa7dfd4ca7f2c8b5d47b68.tar.gz
Replace accidental class-refs on local method-refs
Diffstat (limited to 'paramiko/sftp_si.py')
-rw-r--r--paramiko/sftp_si.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/sftp_si.py b/paramiko/sftp_si.py
index d1b24978..f3400c3f 100644
--- a/paramiko/sftp_si.py
+++ b/paramiko/sftp_si.py
@@ -143,7 +143,7 @@ class SFTPServerInterface (object):
"""
Return an :class:`.SFTPAttributes` object for a path on the server, or an
error code. If your server supports symbolic links (also known as
- "aliases"), you should follow them. (:class:`lstat` is the corresponding
+ "aliases"), you should follow them. (`lstat` is the corresponding
call that doesn't follow symlinks/aliases.)
:param path: the requested path (relative or absolute) to fetch
@@ -160,7 +160,7 @@ class SFTPServerInterface (object):
Return an :class:`.SFTPAttributes` object for a path on the server, or an
error code. If your server supports symbolic links (also known as
"aliases"), you should not follow them -- instead, you should
- return data on the symlink or alias itself. (:class:`stat` is the
+ return data on the symlink or alias itself. (`stat` is the
corresponding call that follows symlinks/aliases.)
:param path: the requested path (relative or absolute) to fetch