Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Jan 19, 2023
1 parent 3a7b0ac commit b74af7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chloggen/internal/chlog/summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package chlog

import (
"bytes"
"embed"
_ "embed"
"fmt"
"sort"
"text/template"
Expand Down Expand Up @@ -68,7 +68,7 @@ func (s summary) String() (string, error) {
template.
New("summary.tmpl").
Option("missingkey=error").
Parse(string(tmpl))
Parse(string(tmpl)))

buf := bytes.Buffer{}
if err := tmpl.Execute(&buf, s); err != nil {
Expand Down

0 comments on commit b74af7c

Please sign in to comment.