From 83d631b6a455d3041b7cb31e1c7eb45a16715c43 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Sun, 29 Dec 2013 13:25:57 -0700 Subject: [PATCH] Fix "docker load" help by removing "SOURCE" prompt and mentioning STDIN Fixes #3383 --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 0627261d53..eeccf0a52e 100644 --- a/commands.go +++ b/commands.go @@ -2203,7 +2203,7 @@ func (cli *DockerCli) CmdSave(args ...string) error { } func (cli *DockerCli) CmdLoad(args ...string) error { - cmd := cli.Subcmd("load", "SOURCE", "Load an image from a tar archive") + cmd := cli.Subcmd("load", "", "Load an image from a tar archive on STDIN") if err := cmd.Parse(args); err != nil { return err }