From 19cb1e1d48b1f95ef63265674ed5b1a20fe0279f Mon Sep 17 00:00:00 2001 From: Karl Dubost Date: Fri, 25 Oct 2019 13:18:46 +0900 Subject: [PATCH] Issue #1948 - Removes mentions of scp The documentation mentions scp in a couple of places, but this is not working. --- fabric/transfer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabric/transfer.py b/fabric/transfer.py index efbfa52f47..722d994184 100644 --- a/fabric/transfer.py +++ b/fabric/transfer.py @@ -1,5 +1,5 @@ """ -File transfer via SFTP and/or SCP. +File transfer via SFTP. """ import os @@ -64,7 +64,7 @@ def get(self, remote, local=None, preserve_mode=True): **If a string is given**, it should be a path to a local directory or file and is subject to similar behavior as that seen by common - Unix utilities or OpenSSH's ``sftp`` or ``scp`` tools. + Unix utilities or OpenSSH's ``sftp`` tool. For example, if the local path is a directory, the remote path's base filename will be added onto it (so ``get('foo/bar/file.txt',