From 956de25f69d14e4f3bbc07c402145a9de298ab1c Mon Sep 17 00:00:00 2001 From: gutmet Date: Wed, 23 Nov 2022 21:30:12 +0100 Subject: [PATCH] replace html/template with text/template --- swill.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swill.go b/swill.go index 7c7fd5f..0bc8488 100644 --- a/swill.go +++ b/swill.go @@ -4,12 +4,12 @@ import ( "errors" "flag" "fmt" - "html/template" "io/ioutil" "os" "path/filepath" "strconv" "strings" + "text/template" "git.gutmet.org/go-mastodon.git" goutil "git.gutmet.org/goutil.git/misc"