remove unneeded cast

This commit is contained in:
bartfokker 2018-10-25 22:22:28 +02:00
parent 78caad2dbd
commit 8a0bd3cf8a
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func (cm *Docker) refresh(c *container.Container) {
c.SetMeta("created", insp.Created.Format("Mon Jan 2 15:04:05 2006"))
c.SetMeta("health", insp.State.Health.Status)
for _, env := range insp.Config.Env {
c.SetMeta("[ENV-VAR]", string(env))
c.SetMeta("[ENV-VAR]", env)
}
c.SetState(insp.State.Status)
}