From 93b7a14fd367ec78b3030bec4afa228d05532ed0 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 8 Oct 2016 23:25:18 +0200 Subject: [PATCH] Fix: Use text/template, not html/template --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index ccf9bcd..aa9fdc0 100644 --- a/main.go +++ b/main.go @@ -6,13 +6,13 @@ import ( "bytes" "errors" "fmt" - "html/template" "io/ioutil" "log" "os" "os/exec" "regexp" "strings" + "text/template" "time" "gopkg.in/yaml.v2"