Just return the id; nothing else.

This commit is contained in:
Mark Allen 2013-11-11 13:26:24 -06:00
Родитель 8cc19765b4
Коммит 62f873aa1f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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
}