Skip to content

Commit

Permalink
Fix golang lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson authored Sep 2, 2024
1 parent 909b45c commit ee7f968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ func readTemplates(themePath string) {

f, err := os.ReadFile(filepath.Join(getAbsThemePath(themePath), "views", "partials.tmpl"))
if err != nil {
logger.Fatalf(err.Error())
logger.Fatal(err.Error())
}
parsedTemplates, err = template.New("Reports").Funcs(funcs).Parse(string(f))
if err != nil {
Expand Down

0 comments on commit ee7f968

Please sign in to comment.