Skip to content

Commit

Permalink
Print newline when printing error message on exit
Browse files Browse the repository at this point in the history
  • Loading branch information
mkchoi212 committed Jan 3, 2018
1 parent 5a9aa17 commit cb37a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func main() {
case *conflict.ErrNoConflict:
fmt.Println(color.Green(color.Regular, err.Error()))
default:
fmt.Print(color.Red(color.Regular, err.Error()))
fmt.Println(color.Red(color.Regular, err.Error()))
}
return
}
Expand Down

0 comments on commit cb37a30

Please sign in to comment.