Skip to content

Commit

Permalink
Don't need to double-escape comments.
Browse files Browse the repository at this point in the history
changecomment already handles escaping for us.

backport of
  6499d21
  • Loading branch information
Amber Yust authored and Dustin J. Mitchell committed Oct 1, 2010
1 parent a20cfe0 commit f20d843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/status/web/templates/console.html
Expand Up @@ -203,7 +203,7 @@ <h1>Console View</h1>

<tr>
<td colspan="{{ r.span }}" class='DevComment {{ alt }}'>
{{ r.comments|changecomment(r.project or None)|e|replace('\n', '<br/>').replace(' ','&nbsp; ') }}
{{ r.comments|changecomment(r.project or None)|replace('\n', '<br/>').replace(' ','&nbsp; ') }}
</td>
</tr>

Expand Down

0 comments on commit f20d843

Please sign in to comment.