From 9040b3eb2b33515f77f6f85258f5f0d3eba17eff Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Tue, 1 Aug 2017 17:21:15 -0700 Subject: [PATCH] ctlv3/command: remove double-quote typos in fields printer Signed-off-by: Gyu-Ho Lee --- etcdctl/ctlv3/command/printer_fields.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etcdctl/ctlv3/command/printer_fields.go b/etcdctl/ctlv3/command/printer_fields.go index 2f19a5cf080..3e25a9504b7 100644 --- a/etcdctl/ctlv3/command/printer_fields.go +++ b/etcdctl/ctlv3/command/printer_fields.go @@ -137,10 +137,10 @@ func (p *fieldsPrinter) EndpointStatus(eps []epStatus) { for _, ep := range eps { p.hdr(ep.Resp.Header) fmt.Printf("\"Version\" : %q\n", ep.Resp.Version) - fmt.Println(`"DBSize" :"`, ep.Resp.DbSize) - fmt.Println(`"Leader" :"`, ep.Resp.Leader) - fmt.Println(`"RaftIndex" :"`, ep.Resp.RaftIndex) - fmt.Println(`"RaftTerm" :"`, ep.Resp.RaftTerm) + fmt.Println(`"DBSize" :`, ep.Resp.DbSize) + fmt.Println(`"Leader" :`, ep.Resp.Leader) + fmt.Println(`"RaftIndex" :`, ep.Resp.RaftIndex) + fmt.Println(`"RaftTerm" :`, ep.Resp.RaftTerm) fmt.Printf("\"Endpoint\" : %q\n", ep.Ep) fmt.Println() }