Browse Source

Just return the id; nothing else.

Mark Allen 11 years ago
parent
commit
62f873aa1f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server.go

+ 1 - 1
server.go

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