From 093072cc187b2a38b48348fc6c142c8b296832f5 Mon Sep 17 00:00:00 2001 From: allencloud Date: Tue, 18 Oct 2016 14:20:12 +0800 Subject: [PATCH] wrap line in deleted containers when pruning Signed-off-by: allencloud --- command/container/prune.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/container/prune.go b/command/container/prune.go index be67fe4ca9..679471398a 100644 --- a/command/container/prune.go +++ b/command/container/prune.go @@ -57,7 +57,7 @@ func runPrune(dockerCli *command.DockerCli, opts pruneOptions) (spaceReclaimed u } if len(report.ContainersDeleted) > 0 { - output = "Deleted Containers:" + output = "Deleted Containers:\n" for _, id := range report.ContainersDeleted { output += id + "\n" }