Correct parameter order for copy/sync etc

This commit is contained in:
Nick Craig-Wood 2016-08-06 00:07:36 +01:00
parent 0805ec051f
commit ae6018355c
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ func newFsDst(remote string) fs.Fs {
func NewFsSrcDst(args []string) (fs.Fs, fs.Fs) {
fsrc, fdst := newFsSrc(args[0]), newFsDst(args[1])
fs.CalculateModifyWindow(fdst, fsrc)
return fdst, fsrc
return fsrc, fdst
}
// NewFsSrc creates a new src fs from the arguments