Fix linter

This commit is contained in:
Miguel de la Cruz 2020-03-01 13:03:47 +01:00
parent 0ae0c6ffdf
commit b69dce907e
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ func createJiraTicketStandaloneCmdF(cmd *cobra.Command, _ []string) error {
varMap, err := getVarMap(vars) varMap, err := getVarMap(vars)
if err != nil { if err != nil {
return fmt.Errorf("error processing vars: %w") return fmt.Errorf("error processing vars: %w", err)
} }
sumTmpl, err := template.New("").Parse(summaryTmplStr) sumTmpl, err := template.New("").Parse(summaryTmplStr)