1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

operations: turn ListFormatted into a Format method on ListFormat

This commit is contained in:
Nick Craig-Wood
2018-05-13 10:55:18 +01:00
parent db4c206e0e
commit 2a32e2d838
3 changed files with 18 additions and 18 deletions

View File

@@ -166,7 +166,7 @@ func Lsf(fsrc fs.Fs, out io.Writer) error {
continue
}
}
fmt.Fprintln(out, operations.ListFormatted(&entry, &list))
fmt.Fprintln(out, list.Format(entry))
}
return nil
})