1
0
mirror of https://github.com/beego/bee.git synced 2025-07-14 23:31:02 +00:00

Fixed padding for printing an option

This commit is contained in:
Faissal Elamraoui
2016-12-05 14:52:37 +01:00
parent 592eac9974
commit 8dca816aac
2 changed files with 2 additions and 2 deletions

2
bee.go
View File

@ -197,7 +197,7 @@ Use {{"bee help [topic]" | bold}} for more information about that topic.
var helpTemplate = `{{"USAGE" | headline}}
{{.UsageLine | printf "bee %s" | bold}}
{{if .Options}}{{endline}}{{"OPTIONS" | headline}}{{range $k,$v := .Options}}
{{$k | printf "-%-11s" | bold}} {{$v}}{{end}}{{endline}}{{end}}
{{$k | printf "-%-12s" | bold}} {{$v}}{{end}}{{endline}}{{end}}
{{"DESCRIPTION" | headline}}
{{tmpltostr .Long . | trim}}
`