summaryrefslogtreecommitdiff
path: root/fs/sftpfs.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-08 22:20:20 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-08 22:20:20 +0000
commit2f6887fbf744bfb8b732d2de8eaa6ef73916de7a (patch)
treebd255259b1bba014bba3d26a79e0098592fee1ef /fs/sftpfs.py
parent4b97c220ff1d1b261b67201ef95875133c158045 (diff)
downloadpyfilesystem-git-2f6887fbf744bfb8b732d2de8eaa6ef73916de7a.tar.gz
spelling fixes
Diffstat (limited to 'fs/sftpfs.py')
-rw-r--r--fs/sftpfs.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/sftpfs.py b/fs/sftpfs.py
index bdf3377..2a2f807 100644
--- a/fs/sftpfs.py
+++ b/fs/sftpfs.py
@@ -70,7 +70,7 @@ class SFTPFS(FS):
"""SFTPFS constructor.
The only required argument is 'connection', which must be something
- from which we can construct a paramiko.SFTPClient object. Possibile
+ from which we can construct a paramiko.SFTPClient object. Possible
values include:
* a hostname string
@@ -78,8 +78,8 @@ class SFTPFS(FS):
* a paramiko.Transport instance
* a paramiko.Channel instance in "sftp" mode
- The kwd argument 'root_path' specifies the root directory on the remote
- machine - access to files outside this root wil be prevented.
+ The keyword argument 'root_path' specifies the root directory on the
+ remote machine - access to files outside this root will be prevented.
:param connection: a connection string
:param root_path: The root path to open
@@ -88,8 +88,8 @@ class SFTPFS(FS):
:param username: Name of SFTP user
:param password: Password for SFTP user
:param pkey: Public key
- :param agent_auth: attempt to authorise with the user's public keys
- :param no_auth: attempt to log in without any kind of authorisation
+ :param agent_auth: attempt to authorize with the user's public keys
+ :param no_auth: attempt to log in without any kind of authorization
"""