From 3f9711fa632b0a94d3c9c2999e673c31d404d890 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 21 Apr 2015 20:11:15 +0200 Subject: [PATCH] command/status: no weird indentintg --- command/status.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/command/status.go b/command/status.go index 2d2d0fa45..7f530057e 100644 --- a/command/status.go +++ b/command/status.go @@ -35,9 +35,9 @@ func (c *StatusCommand) Run(args []string) int { } c.Ui.Output(fmt.Sprintf( "Sealed: %v\n"+ - "\tKey Shares: %d\n"+ - "\tKey Threshold: %d\n"+ - "\tUnseal Progress: %d", + "Key Shares: %d\n"+ + "Key Threshold: %d\n"+ + "Unseal Progress: %d", sealStatus.Sealed, sealStatus.N, sealStatus.T, @@ -57,6 +57,7 @@ func (c *StatusCommand) Run(args []string) int { } // Output if HA is enabled + c.Ui.Output("") c.Ui.Output(fmt.Sprintf("High-Availability Enabled: %v", leaderStatus.HAEnabled)) if leaderStatus.HAEnabled { if sealStatus.Sealed {