From 0c2edc7c22205b76230be0bebe3e7b4ced6cfc41 Mon Sep 17 00:00:00 2001 From: stirante Date: Mon, 27 Jan 2020 12:44:32 +0100 Subject: [PATCH] Run gofmt on container.go --- pkg/commands/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/container.go b/pkg/commands/container.go index 6d5dc93e..c126ed25 100644 --- a/pkg/commands/container.go +++ b/pkg/commands/container.go @@ -261,7 +261,7 @@ func (c *Container) GetDisplayStatus() string { state += " (" + strconv.Itoa(c.Details.State.ExitCode) + ")" } if c.Container.State == "running" && c.Details.State.Health.Status != "" { - state += " (" + c.Details.State.Health.Status + ")"; + state += " (" + c.Details.State.Health.Status + ")" } if c.Container.State == "running" && c.Details.State.Health.Status == "unhealthy" { return utils.MultiColoredString(state, c.GetColor(), color.BgRed)