diff options
Diffstat (limited to 'commands')
-rw-r--r-- | commands/account/compose.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go index f48fa691..62bf11d3 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -72,7 +72,7 @@ func buildBody(args []string) (string, string, error) { } posargs := args[optind:] if len(posargs) > 1 { - return "", template, errors.New("Usage: compose [-H] [body]") + return "", template, errors.New("Usage: compose [-H header] [-T template] [body]") } if len(posargs) == 1 { body = posargs[0] |