summaryrefslogtreecommitdiff
path: root/cmd/podman/volumes/list.go
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/volumes/list.go
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/volumes/list.go')
-rw-r--r--cmd/podman/volumes/list.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/volumes/list.go b/cmd/podman/volumes/list.go
index 9e3a8f77b..804b9f319 100644
--- a/cmd/podman/volumes/list.go
+++ b/cmd/podman/volumes/list.go
@@ -3,11 +3,11 @@ package volumes
import (
"context"
"fmt"
- "html/template"
"io"
"os"
"strings"
"text/tabwriter"
+ "text/template"
"github.com/containers/libpod/v2/cmd/podman/registry"
"github.com/containers/libpod/v2/cmd/podman/validate"