diff options
author | Robey Pointer <robey@lag.net> | 2004-12-12 09:32:17 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2004-12-12 09:32:17 +0000 |
commit | 1a32d2b4efa39a96bef157a18178cf0543ab935d (patch) | |
tree | a275276f01404515516e309cb73ac48f7d27c7f1 | |
parent | a3971274e8ae587a71b887fec15d8b4508b19b4e (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-127]
doc fixups
fix some typos in sftp_client docs
-rw-r--r-- | paramiko/sftp_client.py | 6 |
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: |