From 50a36be5d1238af9702790b3e8acbc576771f3fb Mon Sep 17 00:00:00 2001 From: Alexander Laamanen Date: Fri, 3 Mar 2017 21:53:43 +0200 Subject: [PATCH] Fix formating. --- communicator/ssh/communicator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communicator/ssh/communicator.go b/communicator/ssh/communicator.go index 46cbd51d7..5c9be02bc 100644 --- a/communicator/ssh/communicator.go +++ b/communicator/ssh/communicator.go @@ -576,7 +576,7 @@ func (c *comm) scpUploadSession(path string, input io.Reader, fi *os.FileInfo) e return scpUploadFile(target_file, input, w, stdoutR, fi) } - return c.scpSession("scp -vt "+ strconv.Quote(target_dir), scpFunc) + return c.scpSession("scp -vt "+strconv.Quote(target_dir), scpFunc) } func (c *comm) scpUploadDirSession(dst string, src string, excl []string) error {