summaryrefslogtreecommitdiff
path: root/cmd/podman/system
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-27 12:52:51 +0200
committerGitHub <noreply@github.com>2020-07-27 12:52:51 +0200
commit71f7150490c622708ade8348dcd85fd428c5f116 (patch)
treeb344a41eaeac8bc1650f90ba337739458bce70c5 /cmd/podman/system
parent11e8e655683535999f4d7f2b79859a8ec537b765 (diff)
parent8a45703f79cc1c54e7a4b908111a1becf907873a (diff)
downloadpodman-71f7150490c622708ade8348dcd85fd428c5f116.tar.gz
podman-71f7150490c622708ade8348dcd85fd428c5f116.tar.bz2
podman-71f7150490c622708ade8348dcd85fd428c5f116.zip
Merge pull request #7083 from Luap99/fix-template-escaping
replace the html/template package with text/template
Diffstat (limited to 'cmd/podman/system')
-rw-r--r--cmd/podman/system/df.go2
-rw-r--r--cmd/podman/system/events.go2
2 files changed, 2 insertions, 2 deletions
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"
diff --git a/cmd/podman/system/events.go b/cmd/podman/system/events.go
index 246611c1a..0a46a4042 100644
--- a/cmd/podman/system/events.go
+++ b/cmd/podman/system/events.go
@@ -3,9 +3,9 @@ package system
import (
"bufio"
"context"
- "html/template"
"os"
"strings"
+ "text/template"
"github.com/containers/buildah/pkg/formats"
"github.com/containers/libpod/v2/cmd/podman/registry"