Cosmetic fix when printing a comma-separated list of layers

Upstream-commit: 417e72b0dd07dc5c9829e4fd0f8e1d72261b1a10
Component: engine
This commit is contained in:
Solomon Hykes
2013-01-20 00:48:23 -08:00
parent deb12aeb82
commit da91bf2009

View File

@ -260,7 +260,7 @@ func (docker *Docker) CmdList(stdin io.ReadCloser, stdout io.Writer, args ...str
/* RUNNING */ fmt.Sprintf("%v", container.Running),
/* CREATED */ humanDuration(time.Now().Sub(container.Created)) + " ago",
/* CHANGES */ fmt.Sprintf("%.1fM", float32(container.BytesChanged) / 1024 / 1024),
/* LAYERS */ strings.Join(layers, ", "))
/* LAYERS */ strings.Join(layers, ","))
}
return nil
}