1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Just return the id; nothing else.

This commit is contained in:
Mark Allen 2013-11-11 13:26:24 -06:00
parent 8cc19765b4
commit 62f873aa1f

View file

@ -229,7 +229,7 @@ func (srv *Server) ImageInsert(name, url, path string, out io.Writer, sf *utils.
if err != nil {
return err
}
out.Write(sf.FormatStatus(img.ID, "Image created"))
out.Write(sf.FormatStatus(img.ID, ""))
return nil
}