diff --git a/config/commands.go b/config/commands.go index 2167e6859..73c7b8091 100644 --- a/config/commands.go +++ b/config/commands.go @@ -11,7 +11,7 @@ import ( func printValues(values Values) { for key, value := range values { - fmt.Printf("\t%s:\t%s", key, value) + fmt.Fprintf(os.Stderr, "%-18s %s\n", key+":", value) } }