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 b602ba1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions 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()
1 change: 1 addition & 0 deletions docs/changelog-fragments/646.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix scp.put() usage in documentation sample -- by :user:`kucharskim`.

0 comments on commit b602ba1

Please sign in to comment.