From e48ec9ce0b1045e72d4705bc5dc4ec6e73ba683d Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 12 Nov 2020 14:54:18 -0500 Subject: [PATCH] typo --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 9b98c21..b8e33b1 100644 --- a/main.go +++ b/main.go @@ -42,7 +42,7 @@ func main() { log.Printf("Registering templates from %v/\n", Conf.TplPath) tpl = template.Must(template.ParseGlob(Conf.TplPath + "/*")) if Conf.UserTplPath != "" { - log.Printf("Registering user templates from %v/\n", Conf.UsrTplPath) + log.Printf("Registering user templates from %v/\n", Conf.UserTplPath) tpl = template.Must(tpl.ParseGlob(Conf.UserTplPath + "/*")) } log.Println("Performing LDAP checks")