Merge pull request #1090 from kunalkushwaha/runtime-name-fix

Runtime name printed correctly for containers listing.
This commit is contained in:
Michael Crosby 2017-06-26 10:34:43 -07:00 committed by GitHub
commit a962ac9909

View File

@ -167,7 +167,7 @@ func containerListFn(context *cli.Context) error {
if _, err := fmt.Fprintf(cl, "%s\t%s\t%s\t%d\n",
c.ID(),
imageName,
proto.Runtime,
proto.Runtime.Name,
proto.Size(),
); err != nil {
return err