diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-12-11 14:03:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 14:03:21 -0600 |
commit | f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf (patch) | |
tree | 94a413875065ede3e73bd429425ca62629eba326 /libpod | |
parent | b85d0fa4ea5b6515088a3475a56a44c0cee5bfc5 (diff) | |
parent | e64da85ccbd48e619401dd155b79fa4890e2684b (diff) | |
download | podman-f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf.tar.gz podman-f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf.tar.bz2 podman-f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf.zip |
Merge pull request #103 from surajssd/fix-debug-statement
Use debugf to allow parsing of format specifier
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_attach.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpod/container_attach.go b/libpod/container_attach.go index bcfb6ec49..66d5ec236 100644 --- a/libpod/container_attach.go +++ b/libpod/container_attach.go @@ -2,17 +2,16 @@ package libpod import ( "fmt" - "golang.org/x/crypto/ssh/terminal" "io" "net" "os" "path/filepath" - //"strconv" "github.com/docker/docker/pkg/term" "github.com/pkg/errors" "github.com/projectatomic/libpod/utils" "github.com/sirupsen/logrus" + "golang.org/x/crypto/ssh/terminal" "golang.org/x/sys/unix" "k8s.io/client-go/tools/remotecommand" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" |