diff --git a/src/cmds/restic/cmd_snapshots.go b/src/cmds/restic/cmd_snapshots.go index 5e3db0c5c..b6ef3bd2f 100644 --- a/src/cmds/restic/cmd_snapshots.go +++ b/src/cmds/restic/cmd_snapshots.go @@ -127,6 +127,9 @@ func printSnapshotsReadable(stdout io.Writer, list []*restic.Snapshot) { } rows := len(sn.Paths) + if rows < len(sn.Tags) { + rows = len(sn.Tags) + } treeElement := " " if rows != 1 {