Browse Source

Merge pull request #3904 from alexlarsson/fix-docker-commit-output

Fix docker commit output
Michael Crosby 11 years ago
parent
commit
6863145148
1 changed files with 1 additions and 1 deletions
  1. 1 1
      commands.go

+ 1 - 1
commands.go

@@ -1472,7 +1472,7 @@ func (cli *DockerCli) CmdCommit(args ...string) error {
 		return err
 	}
 
-	fmt.Fprintf(cli.out, "%s\n", env.Get("ID"))
+	fmt.Fprintf(cli.out, "%s\n", env.Get("Id"))
 	return nil
 }