diff options
author | umohnani8 <umohnani@redhat.com> | 2017-11-27 14:45:50 -0500 |
---|---|---|
committer | umohnani8 <umohnani@redhat.com> | 2017-11-27 14:46:45 -0500 |
commit | c5b09d0a3574903c4044a137d5f2dc99c858e5a0 (patch) | |
tree | 951c90572804ca8204a1edadb04c2746aee57776 /cmd/kpod/history.go | |
parent | 52ea0deee64c7466635452c62354604bdc7b48b4 (diff) | |
download | podman-c5b09d0a3574903c4044a137d5f2dc99c858e5a0.tar.gz podman-c5b09d0a3574903c4044a137d5f2dc99c858e5a0.tar.bz2 podman-c5b09d0a3574903c4044a137d5f2dc99c858e5a0.zip |
Fix output of kpod images
Update the output of kpod images to match that of docker images
Signed-off-by: umohnani8 <umohnani@redhat.com>
Diffstat (limited to 'cmd/kpod/history.go')
-rw-r--r-- | cmd/kpod/history.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/kpod/history.go b/cmd/kpod/history.go index c21c1e338..eba5b8b35 100644 --- a/cmd/kpod/history.go +++ b/cmd/kpod/history.go @@ -16,7 +16,7 @@ import ( const ( createdByTruncLength = 45 - idTruncLength = 13 + idTruncLength = 12 ) // historyTemplateParams stores info about each layer |