diff --git a/modules/web_hook.cc b/modules/web_hook.cc index 1404d8b7f..3a890c0cc 100644 --- a/modules/web_hook.cc +++ b/modules/web_hook.cc @@ -600,7 +600,7 @@ github_handle__push(std::ostream &out, if(content["forced"] == "true") out << " (rebase)"; - out << "
";
+ out << "";
for(ssize_t i(count - 1); i >= 0; --i)
{
const json::object &commit(commits.at(i));
@@ -634,10 +634,10 @@ github_handle__push(std::ostream &out,
<< summary
;
- out << "
";
+ out << "\n";
}
- out << "
";
+ out << "";
return true;
}