Skip to content

Commit

Permalink
Update "force active -a [username]" CLI output
Browse files Browse the repository at this point in the history
When ```force active -a [username]``` is invoked, the output of "[username] is now active" did not end with a newline, this commit changes that.
  • Loading branch information
jrdoane committed Dec 7, 2015
1 parent 375886a commit be1da85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion active.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func runActive(cmd *Command, args []string) {
title := fmt.Sprintf("\033];%s\007", account)
fmt.Printf(title)
}
fmt.Printf("%s now active", account)
fmt.Printf("%s now active\n", account)
Config.Save("current", "account", account)
} else {
ErrorAndExit(fmt.Sprintf("no such account %s\n", account))
Expand Down

0 comments on commit be1da85

Please sign in to comment.