Skip to content

Commit bd0139d

Browse files
committed
quick bugfix
1 parent 0cadba8 commit bd0139d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/commands/todos.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var todosCmd = &cobra.Command{
6363
// timeout after 30 seconds
6464
ctx, cancel := context.WithTimeout(ctx, 30*time.Second)
6565
defer cancel()
66-
_, err = t.FindBlame(ctx, r, commit, func(commit *object.Commit, remaining int) {
66+
err = t.FindBlame(ctx, r, commit, func(commit *object.Commit, remaining int) {
6767
total := len(t)
6868
s.Suffix = fmt.Sprintf(" (%d/%d) %s: %s", total-remaining, total, commit.Hash, commit.Author.When)
6969
})

0 commit comments

Comments
 (0)