Skip to content

Commit

Permalink
compute/init: make space after Author prompt match other prompts (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnps authored Apr 20, 2020
1 parent aff2e60 commit 58e4f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/compute/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (c *InitCommand) Exec(in io.Reader, out io.Writer) (err error) {
var defaultEmail string
if email := c.Globals.File.Email; email != "" {
defaultEmail = email
label = fmt.Sprintf("%s[%s]", label, email)
label = fmt.Sprintf("%s[%s] ", label, email)
}

c.author, err = text.Input(out, label, in)
Expand Down

0 comments on commit 58e4f09

Please sign in to comment.