From ad3ccd69f93da31f1002c2c9f6dccec3df9ab5b7 Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 20 Feb 2019 16:44:23 -0600 Subject: add newline to images output ensure a final newline is always added to images output. fixes #2388 Signed-off-by: baude --- cmd/podman/formats/formats.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podman/formats') diff --git a/cmd/podman/formats/formats.go b/cmd/podman/formats/formats.go index c454c39bd..d063d1e2b 100644 --- a/cmd/podman/formats/formats.go +++ b/cmd/podman/formats/formats.go @@ -125,6 +125,7 @@ func (t StdoutTemplateArray) Out() error { fmt.Fprintln(w, "") } } + fmt.Fprintln(w, "") return w.Flush() } -- cgit v1.2.3-54-g00ecf