Skip to content

Commit

Permalink
Fix unclosed <input> tag in buildslave.html
Browse files Browse the repository at this point in the history
This is XHTML; you need the self-closing slash!
  • Loading branch information
nicolas17 committed Jan 7, 2010
1 parent 741156a commit d53188a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/status/web/templates/buildslave.html
Expand Up @@ -41,7 +41,7 @@ <h2>Slave information</h2>
{% elif control %}
{% if not slave.getGraceFul %}
<form method="POST" action="{{ shutdown_url }}">
<input type="submit" value="Gracefully Shutdown">
<input type="submit" value="Gracefully Shutdown"/>
</form>
{% else %}
<p>Gracefully shutting down...</p>
Expand Down

0 comments on commit d53188a

Please sign in to comment.