Skip to content

Commit

Permalink
Fix scp.put() usage in documentation sample
Browse files Browse the repository at this point in the history
  • Loading branch information
kucharskim committed Nov 14, 2024
1 parent cc2ceff commit 18a680f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_samples/copy_files_scp.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
scp.get(remote_file, local_file)

scp = ssh.scp()
scp.put(remote_file, local_file)
scp.put(local_file, remote_file)

ssh.close()

0 comments on commit 18a680f

Please sign in to comment.