cmd: fix wording for no retries message

See: https://forum.rclone.org/t/immutable-should-set-retries-1-when-source-and-dest-are-different/21326/
This commit is contained in:
Nick Craig-Wood 2021-01-02 11:20:02 +00:00
parent cb97c2b0d3
commit 2af7b61fc3
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ func Run(Retry bool, showStats bool, cmd *cobra.Command, f func() error) {
break
}
if accounting.GlobalStats().Errored() && !accounting.GlobalStats().HadRetryError() {
fs.Errorf(nil, "Can't retry this error - not attempting retries")
fs.Errorf(nil, "Can't retry any of the errors - not attempting retries")
break
}
if retryAfter := accounting.GlobalStats().RetryAfter(); !retryAfter.IsZero() {