Skip to content

Commit

Permalink
commit: display database size with thousands separator
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Apr 23, 2019
1 parent 9a18108 commit 4fbe6c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ func commit(args []string) error {
return err
}
}
_, err = fmt.Fprintf(fOut, " Size: %d bytes\n", e.Size)
_, err = numFormat.Fprintf(fOut, " Size: %d bytes\n", e.Size)
if err != nil {
return err
}
Expand Down

0 comments on commit 4fbe6c6

Please sign in to comment.