Fix pull request default message

This commit is contained in:
Jingwen Owen Ou 2013-12-11 00:11:21 -08:00
Родитель 76817bf95e
Коммит 65bdca152a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -241,11 +241,11 @@ func writePullRequestTitleAndBody(base, head, fullBase, fullHead string, commits
func writePullRequestChanges(base, head, fullBase, fullHead string, commits []string, messageFile string) error {
var defaultMsg, commitSummary string
if len(commits) == 1 {
defaultMsg, err := git.Show(commits[0])
msg, err := git.Show(commits[0])
if err != nil {
return err
}
defaultMsg = fmt.Sprintf("%s\n", defaultMsg)
defaultMsg = fmt.Sprintf("%s\n", msg)
} else if len(commits) > 1 {
commitLogs, err := git.Log(base, head)
if err != nil {