diff options
author | Reto Brunner <reto@labrat.space> | 2020-11-11 13:57:42 +0100 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-11-11 13:58:05 +0100 |
commit | a9ae91c2d8d106ec85650fc0534c9cdffa8541eb (patch) | |
tree | 1e2e73ccf995b2f35ec6d72f7898a3c3228a30af | |
parent | f6a0eb8e14c25e49ca18dfc89726a7123afccd67 (diff) | |
download | aerc-a9ae91c2d8d106ec85650fc0534c9cdffa8541eb.tar.gz |
templates: better error message
-rw-r--r-- | lib/templates/template.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/templates/template.go b/lib/templates/template.go index 4346111..1c7b546 100644 --- a/lib/templates/template.go +++ b/lib/templates/template.go @@ -2,7 +2,7 @@ package templates import ( "bytes" - "errors" + "fmt" "io" "net/mail" "os" @@ -190,7 +190,8 @@ func findTemplate(templateName string, templateDirs []string) (string, error) { return templateFile, nil } - return "", errors.New("Can't find template - " + templateName) + return "", fmt.Errorf( + "Can't find template %q in any of %v ", templateName, templateDirs) } func ParseTemplateFromFile(templateName string, templateDirs []string, data interface{}) (io.Reader, error) { |