Browse Source

Merge remote-tracking branch 'upstream/master'

Charles Hooper 12 years ago
parent
commit
4c19c9341c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      commands.go

+ 2 - 2
commands.go

@@ -559,8 +559,8 @@ func (srv *Server) CmdImages(stdin io.ReadCloser, stdout io.Writer, args ...stri
 		for id, image := range allImages {
 			if !*quiet {
 				for idx, field := range []string{
-					/* REPOSITORY */ "",
-					/* TAG */ "",
+					/* REPOSITORY */ "<none>",
+					/* TAG */ "<none>",
 					/* ID */ id,
 					/* CREATED */ HumanDuration(time.Now().Sub(image.Created)) + " ago",
 					/* PARENT */ srv.runtime.repositories.ImageName(image.Parent),