From 31a94d28e34264243617b72891d25fd849d336eb Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Tue, 21 Apr 2015 10:22:58 -0700 Subject: [PATCH] etcdctl: add extended as output format extended wasn't documented in the help as one of the output formats, fix this! Conflicts: etcdctl/main.go --- etcdctl/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcdctl/main.go b/etcdctl/main.go index a93a411e2b9..e3f7abeb9d6 100644 --- a/etcdctl/main.go +++ b/etcdctl/main.go @@ -31,7 +31,7 @@ func main() { app.Flags = []cli.Flag{ cli.BoolFlag{Name: "debug", Usage: "output cURL commands which can be used to reproduce the request"}, cli.BoolFlag{Name: "no-sync", Usage: "don't synchronize cluster information before sending request"}, - cli.StringFlag{Name: "output, o", Value: "simple", Usage: "output response in the given format (`simple` or `json`)"}, + cli.StringFlag{Name: "output, o", Value: "simple", Usage: "output response in the given format (`simple`, `extended` or `json`)"}, cli.StringFlag{Name: "peers, C", Value: "", Usage: "a comma-delimited list of machine addresses in the cluster (default: \"127.0.0.1:4001\")"}, cli.StringFlag{Name: "cert-file", Value: "", Usage: "identify HTTPS client using this SSL certificate file"}, cli.StringFlag{Name: "key-file", Value: "", Usage: "identify HTTPS client using this SSL key file"},