Change format of reporting

This commit is contained in:
Blade Barringer
2015-08-09 16:14:09 -05:00
parent cd15b115ad
commit c1f0fae456

View File

@@ -116,9 +116,8 @@ function post(message, items) {
function formatMessageForPosting(msg, items) { function formatMessageForPosting(msg, items) {
let body = `*Warning:* ${msg}`; let body = `*Warning:* ${msg}`;
body += '\n\n```\n'; body += '\n\n>>>\n';
body += items.join('\n'); body += items.join('\n');
body += '\n```';
return body; return body;
} }