From 8a45703f79cc1c54e7a4b908111a1becf907873a Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Sat, 25 Jul 2020 15:03:35 +0200 Subject: replace the html/template package with text/template Currently some commands use the html/template package. This can lead to invalid output. e.g. `system df --verbose` will print `<none>` instead of `` with an untaged image. Signed-off-by: Paul Holzinger --- cmd/podman/system/df.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/podman/system/df.go') diff --git a/cmd/podman/system/df.go b/cmd/podman/system/df.go index c2308f0cc..a242c4f66 100644 --- a/cmd/podman/system/df.go +++ b/cmd/podman/system/df.go @@ -2,11 +2,11 @@ package system import ( "fmt" - "html/template" "io" "os" "strings" "text/tabwriter" + "text/template" "time" "github.com/containers/libpod/v2/cmd/podman/registry" -- cgit v1.2.3-54-g00ecf