Browse code

Just return the id; nothing else.

Mark Allen authored on 2013/11/12 04:26:24
Showing 1 changed files
... ...
@@ -229,7 +229,7 @@ func (srv *Server) ImageInsert(name, url, path string, out io.Writer, sf *utils.
229 229
 	if err != nil {
230 230
 		return err
231 231
 	}
232
-	out.Write(sf.FormatStatus(img.ID, "Image created"))
232
+	out.Write(sf.FormatStatus(img.ID, ""))
233 233
 	return nil
234 234
 }
235 235