Skip to content

Commit

Permalink
Update docstrings: wildcards won't work
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Jul 6, 2022
1 parent 8d8ffd0 commit 97645a0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions scp.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ def get(self, remote_path, local_path='',
"""
Transfer files and directories from remote host to localhost.
@param remote_path: path to retrieve from remote host. since this is
evaluated by scp on the remote host, shell wildcards and
environment variables may be used.
@param remote_path: path to retrieve from remote host. Note that
wildcards will be escaped unless you changed the `sanitize`
function.
@type remote_path: str
@param local_path: path in which to receive files locally
@type local_path: str
Expand Down Expand Up @@ -598,9 +598,8 @@ def get(transport, remote_path, local_path='',
@param transport: an paramiko L{Transport}
@type transport: L{Transport}
@param remote_path: path to retrieve from remote host. since this is
evaluated by scp on the remote host, shell wildcards and environment
variables may be used.
@param remote_path: path to retrieve from remote host. Note that wildcards
will be escaped unless you changed the `sanitize` function.
@type remote_path: str
@param local_path: path in which to receive files locally
@type local_path: str
Expand Down

0 comments on commit 97645a0

Please sign in to comment.