From 4bd993270329a8c6f59b84b280539bbbdf0a4624 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 9 Jul 2016 10:11:57 +0100 Subject: [PATCH] Fix wording in verbose copy logs - fixes #574 --- fs/operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/operations.go b/fs/operations.go index 8f6cdf202..5a247ed02 100644 --- a/fs/operations.go +++ b/fs/operations.go @@ -231,7 +231,7 @@ func Copy(f Fs, dst, src Object) (err error) { in := NewAccount(in0, src) // account the transfer if doUpdate { - actionTaken = "Copied (updated existing)" + actionTaken = "Copied (replaced existing)" err = dst.Update(in, src) } else { actionTaken = "Copied (new)"