From 302d82a192473f173974735c4fcc20837b1cb57e Mon Sep 17 00:00:00 2001 From: Alex Quick Date: Fri, 15 Dec 2017 10:06:45 -0500 Subject: [PATCH] fix indentation for network/repo help --- plugins/network/src/commands/commands.go | 2 +- plugins/repo/src/commands/commands.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/network/src/commands/commands.go b/plugins/network/src/commands/commands.go index 61ec0efba..6f98429d5 100644 --- a/plugins/network/src/commands/commands.go +++ b/plugins/network/src/commands/commands.go @@ -48,7 +48,7 @@ func main() { func usage() { config := columnize.DefaultConfig() config.Delim = "," - config.Prefix = "\t" + config.Prefix = " " config.Empty = "" content := strings.Split(helpContent, "\n")[1:] fmt.Println(helpHeader) diff --git a/plugins/repo/src/commands/commands.go b/plugins/repo/src/commands/commands.go index e0d3862b4..46c12a852 100644 --- a/plugins/repo/src/commands/commands.go +++ b/plugins/repo/src/commands/commands.go @@ -46,7 +46,7 @@ func main() { func usage() { config := columnize.DefaultConfig() config.Delim = "," - config.Prefix = "\t" + config.Prefix = " " config.Empty = "" content := strings.Split(helpContent, "\n")[1:] fmt.Println(helpHeader)