Skip to content

Commit

Permalink
fix(trim): trimming message
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Jan 8, 2016
1 parent 8fcc0a6 commit 9e6ed07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/format-message.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function formatMessage (answers) {
(answers.tag !== 'currentTag')
var usedTag = hasTag ? ('\nTAG: ' + answers.tag) : ''
const message = head + '\n\n' + body + usedTag + '\n\n' + issues
return message
return message.trim()
}

module.exports = formatMessage
Expand Down

0 comments on commit 9e6ed07

Please sign in to comment.