1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2024-10-18 06:44:25 +00:00

Fix: Use text/template instead of html/template

This commit is contained in:
Knut Ahlers 2016-08-23 16:58:14 +02:00
parent 33cdcf1d12
commit 2f9e64ecb4
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -3,11 +3,11 @@ package main
import ( import (
"bytes" "bytes"
"fmt" "fmt"
"html/template"
"io/ioutil" "io/ioutil"
"log" "log"
"os" "os"
"strings" "strings"
"text/template"
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"