mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-06 13:41:36 +00:00
Cosmetic fix when printing a comma-separated list of layers
This commit is contained in:
+1
-1
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user