summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--paramiko/sftp_client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/sftp_client.py b/paramiko/sftp_client.py
index 75357112..6ddd1572 100644
--- a/paramiko/sftp_client.py
+++ b/paramiko/sftp_client.py
@@ -59,9 +59,9 @@ class SFTPClient (BaseSFTP):
@param t: an open L{Transport} which is already authenticated.
@type t: L{Transport}
- @return: a new L{SFTP} object, referring to an sftp session (channel)
- across the transport.
- @rtype: L{SFTP}
+ @return: a new L{SFTPClient} object, referring to an sftp session
+ (channel) across the transport.
+ @rtype: L{SFTPClient}
"""
chan = t.open_session()
if chan is None: