diff options
Diffstat (limited to 'cmd/krino/log.go')
| -rw-r--r-- | cmd/krino/log.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/krino/log.go b/cmd/krino/log.go index bcbe1d0..6904a93 100644 --- a/cmd/krino/log.go +++ b/cmd/krino/log.go @@ -107,7 +107,7 @@ func styleUndone(line string, p palette) string { // the directories it touched, and its counts (see countsText), with // "(undone)" appended when a later run has reversed it. func formatRun(r journal.Run) string { - line := fmt.Sprintf("%s %s %s %s", r.ID, r.Start.Format("2006-01-02 15:04"), strings.Join(r.Dirs, ", "), countsText(r.Counts)) + line := fmt.Sprintf("%s %s %s %s", r.ID, r.Start.Format("2006-01-02 15:04"), display(strings.Join(r.Dirs, ", ")), countsText(r.Counts)) if r.Undone { line += " (undone)" } |
